mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
Ticket #1494 - Fixes to tabstrip images, and tweaks to CSS tehre and there
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@44152 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
0b0eadaf1d
commit
3d6057d533
@ -25,6 +25,8 @@
|
|||||||
|
|
||||||
#TreeActions li {
|
#TreeActions li {
|
||||||
float: left;
|
float: left;
|
||||||
|
list-style: none;
|
||||||
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#TreeActions li button {
|
#TreeActions li button {
|
||||||
@ -35,12 +37,12 @@
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
width: auto;
|
width: auto;
|
||||||
padding: 0;
|
padding: 0 2px;
|
||||||
|
margin: 0 2px;
|
||||||
border-color: #CCCCCC rgb(153, 153, 153) rgb(153, 153, 153) rgb(204, 204, 204);
|
border-color: #CCCCCC rgb(153, 153, 153) rgb(153, 153, 153) rgb(204, 204, 204);
|
||||||
border-style: double;
|
border-style: double;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
margin: 0 3px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#TreeActions li button:active {
|
#TreeActions li button:active {
|
||||||
|
@ -7,7 +7,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.right form .field {
|
.right form .field {
|
||||||
margin: 3px !important;
|
/*margin: 3px !important;*/
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
.right form .text,
|
.right form .text,
|
||||||
.right form .field span.readonly {
|
.right form .field span.readonly {
|
||||||
@ -19,7 +20,8 @@
|
|||||||
.right form .field span.middleColumn {
|
.right form .field span.middleColumn {
|
||||||
display: block;
|
display: block;
|
||||||
background: #e9e9e9;
|
background: #e9e9e9;
|
||||||
padding: 2px;
|
padding: 3px;
|
||||||
|
width: 97%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.right form .checkbox input,
|
.right form .checkbox input,
|
||||||
@ -38,15 +40,20 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.right form textarea,
|
.right form textarea,
|
||||||
.right form input,
|
.right form input.text,
|
||||||
.right form textarea.htmleditor {
|
.right form textarea.htmleditor {
|
||||||
border: 1px solid #a7a7a7;
|
border: 1px solid #a7a7a7;
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
width: 96%;
|
width: 99%;
|
||||||
|
/*outline: 3px solid #e9e9e9;*/
|
||||||
}
|
}
|
||||||
.right form textarea.htmleditor {
|
.right form textarea.htmleditor {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
.right form .mceEditor {
|
||||||
|
width: 100%;
|
||||||
|
border: 1px solid #a7a7a7;
|
||||||
|
}
|
||||||
|
|
||||||
.right form input.checkbox,
|
.right form input.checkbox,
|
||||||
.right form .optionset input,
|
.right form .optionset input,
|
||||||
@ -94,7 +101,8 @@
|
|||||||
#CommentFilterButton,
|
#CommentFilterButton,
|
||||||
.actions input,
|
.actions input,
|
||||||
#deletemarked input.action,
|
#deletemarked input.action,
|
||||||
#UnusedThumbnails a {
|
#UnusedThumbnails a,
|
||||||
|
div.Actions input {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
float: left;
|
float: left;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
@ -132,7 +140,8 @@
|
|||||||
border-color: #999999 rgb(204, 204, 204) rgb(204, 204, 204) rgb(153, 153, 153);
|
border-color: #999999 rgb(204, 204, 204) rgb(204, 204, 204) rgb(153, 153, 153);
|
||||||
}
|
}
|
||||||
|
|
||||||
.ajaxActions input:hover {
|
.ajaxActions input:hover,
|
||||||
|
div.Actions input {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -154,6 +163,7 @@ input.loading {
|
|||||||
* Tabs
|
* Tabs
|
||||||
*/
|
*/
|
||||||
.right form div.tab {
|
.right form div.tab {
|
||||||
|
background: #fff;
|
||||||
clear: left;
|
clear: left;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
border: 1px solid #aaa;
|
border: 1px solid #aaa;
|
||||||
@ -374,7 +384,7 @@ div.MemberListFilter,
|
|||||||
div.MemberFilter,
|
div.MemberFilter,
|
||||||
div.CommentFilter {
|
div.CommentFilter {
|
||||||
/*float: right;*/
|
/*float: right;*/
|
||||||
width: 30em;
|
width: 35em;
|
||||||
margin: 5px 0;
|
margin: 5px 0;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
background-color : #ebeadb;
|
background-color : #ebeadb;
|
||||||
|
@ -63,7 +63,7 @@ body.stillLoading select {
|
|||||||
overflow: auto;
|
overflow: auto;
|
||||||
z-index: 50;
|
z-index: 50;
|
||||||
border: 1px #acbbcc solid;
|
border: 1px #acbbcc solid;
|
||||||
background-color: white;
|
background-color: #eee;
|
||||||
margin-right : 3px;
|
margin-right : 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -304,8 +304,8 @@ div.spacer, li.spacer {
|
|||||||
/** RIGHT PANEL **/
|
/** RIGHT PANEL **/
|
||||||
|
|
||||||
.mceToolbarExternal {
|
.mceToolbarExternal {
|
||||||
background-color: #EEE;
|
background-color: #eee;
|
||||||
border-bottom: 1px #CCC solid;
|
/*border-bottom: 1px #CCC solid;*/
|
||||||
/*position: absolute;
|
/*position: absolute;
|
||||||
top: 23px;
|
top: 23px;
|
||||||
left: 0;*/
|
left: 0;*/
|
||||||
|
Loading…
Reference in New Issue
Block a user