зеркало из https://github.com/mozilla/FlightDeck.git
134 строки
2.3 KiB
CSS
134 строки
2.3 KiB
CSS
@import url('UI.Editor_Menu.css');
|
|
@import url('UI.Editor_Area.css');
|
|
|
|
html, body, #wrapper, #app-content, #editor-wrapper, div.CodeMirror-wrapping
|
|
{
|
|
height: 100%;
|
|
}
|
|
|
|
body
|
|
{
|
|
background: #fff url(../img/sidebar-bg.png) 0 0 repeat-y;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.UI_middleWrapper,
|
|
.centerSection p {
|
|
max-width: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
#app-body
|
|
{
|
|
position:absolute;
|
|
top:48px;
|
|
bottom:72px;
|
|
left:0;
|
|
right:0;
|
|
}
|
|
|
|
#app-sidebar {
|
|
bottom:-71px;
|
|
}
|
|
|
|
#app-content
|
|
{
|
|
position: absolute;
|
|
left: 230px;
|
|
right: 0px;
|
|
background: #E5E9EE;
|
|
}
|
|
|
|
#editor-tabs
|
|
{
|
|
height: 30px;
|
|
padding-left: 56px;
|
|
border-top: 1px solid #fff;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#editor-tabs .tab
|
|
{
|
|
height: 23px;
|
|
line-height: 23px;
|
|
margin: 6px 6px 0 0;
|
|
padding: 0 6px;
|
|
background: -moz-linear-gradient(center top , #F4F8FC, #CED4DB);
|
|
border: 1px solid;
|
|
border-color: #bbb #888 #555;
|
|
border-bottom: none;
|
|
text-shadow: 0 1px 0 #eee;
|
|
cursor: pointer;
|
|
border-radius: 3px 3px 0 0;
|
|
-moz-user-select:none;
|
|
}
|
|
|
|
#editor-tabs .tab:hover
|
|
{
|
|
color: #000;
|
|
background: -moz-linear-gradient(center top , #fefeff, #CED4DB);
|
|
}
|
|
|
|
#editor-tabs .tab.selected
|
|
{
|
|
border-color: #777 !important;
|
|
background: -moz-linear-gradient(top, #bbb, #ccc) !important;
|
|
text-shadow: 0 1px 0 #eee !important;
|
|
color: #222 !important;
|
|
cursor: default !important;
|
|
-moz-box-shadow: 0 1px 2px -1px #555 inset;
|
|
}
|
|
|
|
#editor-tabs .tab .tab-close {
|
|
padding:0 3px;
|
|
}
|
|
#editor-tabs .tab .tab-close:hover {
|
|
background:#c22;
|
|
text-shadow:0 1px 0 #000;
|
|
color:#fff;
|
|
border-radius:10px;
|
|
}
|
|
|
|
#editor-tabs .tab.modified .label {
|
|
font-style:italic;
|
|
}
|
|
|
|
#editor-tabs .tab.modified .label:after {
|
|
content:'*';
|
|
}
|
|
|
|
|
|
.ma-container strong {
|
|
font-weight: bold;
|
|
}
|
|
.ma-container .author {
|
|
display: block;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.ma-container .description {
|
|
display: block;
|
|
font-size: 0.9em;
|
|
font-style: italic;
|
|
}
|
|
.UI_Revisions span.message {
|
|
font-size: 0.9em;
|
|
display: block;
|
|
padding-left: 100px;
|
|
max-width: 300px;
|
|
}
|
|
.UI_Revisions span.commit_message {
|
|
font-size: 0.8em;
|
|
font-style: italic;
|
|
color: #999;
|
|
display: block;
|
|
padding-left: 100px;
|
|
max-width: 300px;
|
|
}
|
|
.UI_Revisions li.current {
|
|
background: #ffb;
|
|
}
|
|
.UI_Revisions em.date {
|
|
margin-left: 5px;
|
|
}
|