mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
66d0673b07
Changed the calculation of the iframe size so it would be the correct height. Altered the styles of the view details area to match design. Changed the background color of the title on the file header so it wouldn't look editable (as recommended by Felipe)
93 lines
2.2 KiB
SCSS
Executable File
93 lines
2.2 KiB
SCSS
Executable File
div.TreeDropdownField {
|
|
width: 400px;
|
|
background: #fff;
|
|
border: 1px solid #aaa;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
|
|
input {
|
|
border: none;
|
|
background: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.treedropdownfield-title {
|
|
float: left;
|
|
padding: 7px;
|
|
width: 90%;
|
|
line-height: 16px;
|
|
overflow:hidden;
|
|
outline: none;
|
|
}
|
|
|
|
.treedropdownfield-panel {
|
|
clear: left;
|
|
position: absolute;
|
|
overflow: auto;
|
|
display: none;
|
|
cursor: default;
|
|
border: 1px solid #aaa;
|
|
border-top: none;
|
|
margin: 1px 0 0 -1px; /* account for border on container div */
|
|
//height: 200px;
|
|
max-height:200px;
|
|
background-color: #fff;
|
|
z-index: 50;
|
|
-webkit-box-shadow: 0 4px 5px rgba(0,0,0,.15);
|
|
-moz-box-shadow : 0 4px 5px rgba(0,0,0,.15);
|
|
-o-box-shadow : 0 4px 5px rgba(0,0,0,.15);
|
|
box-shadow : 0 4px 5px rgba(0,0,0,.15);
|
|
|
|
ul.tree {
|
|
margin: 0;
|
|
|
|
a {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.treedropdownfield-toggle-panel-link {
|
|
border: none;
|
|
margin: 0;
|
|
z-index: 0;
|
|
padding: 7px 3px;
|
|
float: right;
|
|
overflow: hidden;
|
|
-webkit-border-radius: 0 4px 4px 0;
|
|
-moz-border-radius: 0 4px 4px 0;
|
|
border-radius: 0 4px 4px 0;
|
|
-moz-background-clip : padding;
|
|
-webkit-background-clip: padding-box;
|
|
background-clip: padding-box;
|
|
background: #ccc;
|
|
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
|
|
background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
|
|
background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
|
|
background-image: -o-linear-gradient(bottom, #ccc 0%, #eee 60%);
|
|
background-image: -ms-linear-gradient(top, #cccccc 0%,#eeeeee 60%);
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#eeeeee',GradientType=0 );
|
|
|
|
background-image: linear-gradient(top, #cccccc 0%,#eeeeee 60%);
|
|
border-left: 1px solid #aaa;
|
|
|
|
&.treedropdownfield-open-tree {
|
|
background: transparent;
|
|
border: none;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
display: block;
|
|
border: 0;
|
|
margin: 0;
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.loading,
|
|
.jstree-themeroller a.jstree-loading .jstree-icon {
|
|
background: #fff url("../images/network-save.gif") center center no-repeat !important;
|
|
}
|
|
} |