mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-04 05:58:27 +00:00
cost center cleanup + grid css
This commit is contained in:
@@ -2328,7 +2328,7 @@ div.form-section-head {
|
||||
div.form-layout-row:first-child .form-section-head {
|
||||
border-top: 0px solid #ccc !important;
|
||||
margin-top: 0px;
|
||||
padding-top: 15px;
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
div.form-section-head h3 {
|
||||
@@ -2355,18 +2355,6 @@ div.page_break {
|
||||
border-top: 1px dashed #888;
|
||||
}
|
||||
|
||||
div.grid_tbarlinks {
|
||||
border-bottom: 0px;
|
||||
background-color: #CCC;
|
||||
padding: 4px 4px 2px 4px;
|
||||
width: 190px;
|
||||
float: right;
|
||||
|
||||
-moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
|
||||
-webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
|
||||
}
|
||||
|
||||
|
||||
div.dialog_frm {
|
||||
position: relative;
|
||||
margin: 10px;
|
||||
@@ -2541,48 +2529,38 @@ div.sidebar-comment-info {
|
||||
* lib/css/legacy/grid.css
|
||||
*/
|
||||
|
||||
|
||||
/* Grid */
|
||||
|
||||
|
||||
/* --- Simple --- */
|
||||
.grid_wrapper_simple {
|
||||
width: 100%;
|
||||
margin-bottom: 8px;
|
||||
border: 1px solid #AA9;
|
||||
}
|
||||
|
||||
.grid_head_wrapper_simple {
|
||||
padding: 0px;
|
||||
border-bottom: 2px solid #AAA;
|
||||
}
|
||||
|
||||
.grid_head_wrapper_simple td {
|
||||
border-right: 1px solid #AA9;
|
||||
}
|
||||
|
||||
.grid_head_wrapper_simple td div {
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.grid_tab_wrapper_simple {
|
||||
}
|
||||
|
||||
.grid_cell_simple {
|
||||
padding: 2px;
|
||||
background-color: #fff;
|
||||
border-right: 1px solid #AA9;
|
||||
}
|
||||
|
||||
|
||||
/* --- Normal --- */
|
||||
.grid_wrapper {
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
border: 1px solid #AAA;
|
||||
width: 100%;
|
||||
margin-bottom: 8px;
|
||||
background-color: #fff;
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
|
||||
div.grid_tbarlinks {
|
||||
border-bottom: 0px;
|
||||
padding: 4px 4px 2px 4px;
|
||||
width: 190px;
|
||||
float: right;
|
||||
margin-right: 12px;
|
||||
|
||||
-webkit-border-top-left-radius: 5px;
|
||||
-webkit-border-top-right-radius: 5px;
|
||||
-moz-border-radius-topleft: 5px;
|
||||
-moz-border-radius-topright: 5px;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
|
||||
background: #dddddd; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #dddddd 0%, #bbbbbb 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dddddd), color-stop(100%,#bbbbbb)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #dddddd 0%,#bbbbbb 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #dddddd 0%,#bbbbbb 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #dddddd 0%,#bbbbbb 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #dddddd 0%,#bbbbbb 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#bbbbbb',GradientType=0 ); /* IE6-9 */
|
||||
|
||||
}
|
||||
|
||||
.grid_tab_wrapper {
|
||||
@@ -2613,11 +2591,19 @@ div.sidebar-comment-info {
|
||||
}
|
||||
|
||||
.grid_head_table td {
|
||||
background-color: #EEE;
|
||||
border-right: 1px solid #AAA;
|
||||
border-bottom: 1px solid #AAA;
|
||||
height: 40px;
|
||||
padding: 0px;
|
||||
|
||||
background: #eeeeee; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #eeeeee 0%,#cccccc 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
|
||||
}
|
||||
|
||||
.grid_head_table td div {
|
||||
|
||||
Reference in New Issue
Block a user