Skip to content

Commit b09955a

Browse files
committed
design submit buttons and fix DMSF plugin
1 parent 80cda5f commit b09955a

File tree

3 files changed

+23
-63
lines changed

3 files changed

+23
-63
lines changed

stylesheets/DMSF.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
a.icon.icon-file.image-jpeg{
2+
background-image: none;
3+
}

stylesheets/application.css

Lines changed: 3 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
44
@import url(theme.css);
55
@import url(color_tasks.css);
6+
@import url(DMSF.css);
7+
@import url(buttons.css);
68

79
html{
810
overflow-x: hidden;
@@ -195,70 +197,7 @@ label[for="q"]{
195197

196198
/*=====TABLE=====*/
197199

198-
table.list{
199-
border-radius: 6px;
200-
border-collapse: separate !important;
201-
overflow: hidden;
202-
line-height: 40px;
203-
border: 2px solid #eeeff3;
204-
border-spacing: 0;
205-
color: #6b7d94;
206-
}
207-
208-
table.list th {
209-
background-color: #6f7c93;
210-
text-align: center !important;
211-
}
212-
213-
table.list tr.even{
214-
background-color: #fefefe;
215-
}
216-
217-
table.list tr.odd{
218-
background-color: #fbfcfe;
219-
}
220-
221-
table.list th a{
222-
color: #f5f6f7;
223-
}
224-
225-
table.list td{
226-
vertical-align: middle;
227-
}
228-
229-
table.list tbody tr:hover {
230-
background-color: #7bbbe5;
231-
}
232200

233-
table.list th.checkbox{
234-
width: 50px;
235-
text-align: none;
236-
}
237-
238-
table.progress{
239-
width: 100% !important;
240-
border-radius: 2px;
241-
border-collapse: separate !important;
242-
overflow: hidden;
243-
}
244-
245-
table.progress td.todo{
246-
height: 5px !important;
247-
border-right: 5px !important;
248-
background-color: #d8e3ea;
249-
}
250-
251-
table.progress td.closed{
252-
height: 5px !important;
253-
border-right: 5px !important;
254-
background-color: #4cbac1;
255-
}
256-
257-
table.progress{
258-
height: 5px !important;
259-
border-right: 5px !important;
260-
261-
}
262201

263202
/*==========FALSH NOTICE======*/
264203
div.flash.notice{
@@ -287,3 +226,4 @@ div.flash.notice{
287226
.ui-datepicker table .ui-datepicker-week-col{
288227
padding-left: 20px;
289228
}
229+

stylesheets/buttons.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* buttons */
2+
input[type="submit"]{
3+
border: 2px solid #d4dbe3;
4+
-webkit-border-radius: 4;
5+
-moz-border-radius: 4;
6+
border-radius: 4px;
7+
color: #647082;
8+
background: #fafafc;
9+
padding: 4px 7px 4px 7px;
10+
text-decoration: none;
11+
font-size: 15px;
12+
}
13+
14+
input[type="submit"]:hover {
15+
border-color: #129cf7;
16+
color: #000;
17+
}

0 commit comments

Comments
 (0)