Start using SASS

feature/core
Sven Slootweg 11 years ago
parent cd0e813442
commit a93d16c9dc

1
.gitignore vendored

@ -1 +1,2 @@
config.json config.json
.sass-cache

@ -1,121 +1,85 @@
html, body html, body {
{ overflow: hidden; }
overflow: hidden;
}
body body {
{ position: fixed;
position: fixed; margin: 0px;
margin: 0px; width: 100%;
width: 100%; height: 100%; }
height: 100%;
}
#jsde_templates #jsde_templates {
{ display: none; }
display: none;
}
/* MDIWindow Styling | Generic */ /* MDIWindow Styling | Generic */
div.window-wrapper {
div.window-wrapper position: absolute; }
{
position: absolute; div.window-title {
} position: absolute;
z-index: 2;
div.window-title left: 0px;
{ right: 0px;
position: absolute; top: 0px;
z-index: 2; cursor: default;
left: 0px; text-overflow: ellipsis;
right: 0px; overflow: hidden;
top: 0px; white-space: nowrap; }
cursor: default;
text-overflow: ellipsis; div.window-outer {
overflow: hidden; position: absolute;
white-space: nowrap; z-index: 3;
} left: 0px;
right: 0px;
div.window-outer bottom: 0px; }
{
position: absolute; div.window-inner-wrapper {
z-index: 3; position: absolute;
left: 0px; top: 0px;
right: 0px; bottom: 0px;
bottom: 0px; left: 0px;
} right: 0px;
overflow-y: auto;
div.window-inner-wrapper overflow-x: auto; }
{
position: absolute; .window-noscroll {
top: 0px; overflow-x: hidden !important;
bottom: 0px; overflow-y: hidden !important; }
left: 0px;
right: 0px; div.window-close {
overflow-y: auto; float: right; }
overflow-x: auto;
} div.window-close a {
position: absolute;
.window-noscroll right: 3px;
{ top: 2px;
overflow-x: hidden !important; display: block;
overflow-y: hidden !important; padding: 1px 4px;
} text-decoration: none;
font-size: 12px;
div.window-close border-radius: 5px; }
{
float: right;
}
div.window-close a
{
position: absolute;
right: 3px;
top: 2px;
display: block;
padding: 1px 4px;
text-decoration: none;
font-size: 12px;
border-radius: 5px;
}
/* MDIWindow Styling | Normal state */ /* MDIWindow Styling | Normal state */
div.window-styled div.window-inner {
visibility: visible; }
div.window-styled div.window-inner
{
visibility: visible;
}
/* MDIWindow Styling | Dragging state */ /* MDIWindow Styling | Dragging state */
div.window-dragged div.window-inner {
visibility: hidden; }
div.window-dragged div.window-inner
{ div.workspace-bar {
visibility: hidden; position: absolute;
} bottom: 0px;
left: 0px;
div.workspace-bar right: 0px; }
{
position: absolute; a.workspace-tab {
bottom: 0px; display: block;
left: 0px; float: left; }
right: 0px;
} div.window-resizer {
position: absolute;
a.workspace-tab width: 12px;
{ height: 12px;
display: block; bottom: -6px;
float: left; right: -6px;
} cursor: se-resize; }
div.window-resizer
{
position: absolute;
width: 12px;
height: 12px;
bottom: -6px;
right: -6px;
cursor: se-resize;
}

@ -1,198 +1,131 @@
html,body html, body {
{ font-family: "Varela Round", sans-serif, Trebuchet MS;
font-family: 'Varela Round', sans-serif, Trebuchet MS; background-color: silver;
background-color: silver; background-attachment: fixed;
background-attachment:fixed; background-position: center; }
background-position:center;
}
/* Temporary styles */ /* Temporary styles */
div#make-window {
div#make-window background-color: white;
{ border: 1px solid gray;
background-color: white; padding: 14px;
border: 1px solid gray; width: 350px;
padding: 14px; filter: alpha(opacity=85);
width: 350px; opacity: 0.85; }
filter:alpha(opacity=85);
opacity:0.85;
}
/* MDIWindow Styling | Generic */ /* MDIWindow Styling | Generic */
div.window-title {
div.window-title -webkit-border-top-left-radius: 10px;
{ -webkit-border-top-right-radius: 10px;
-webkit-border-top-left-radius: 10px; -moz-border-radius-topleft: 10px;
-webkit-border-top-right-radius: 10px; -moz-border-radius-topright: 10px;
-moz-border-radius-topleft: 10px; border-top-left-radius: 10px;
-moz-border-radius-topright: 10px; border-top-right-radius: 10px;
border-top-left-radius: 10px; height: 16px;
border-top-right-radius: 10px; color: white;
height: 16px; font-size: 14px;
color: white; font-weight: bold;
font-size: 14px; padding: 4px;
font-weight: bold; padding-left: 7px;
padding: 4px; border-top: 1px solid #959595;
padding-left: 7px; border-right: 1px solid #959595;
border-top: 1px solid #959595; border-left: 1px solid #959595; }
border-right: 1px solid #959595;
border-left: 1px solid #959595; div.window-focused div.window-title {
} border-top: 1px solid #6262ff;
border-right: 1px solid #6262ff;
div.window-focused div.window-title border-left: 1px solid #6262ff; }
{
border-top: 1px solid #6262FF; div.window-outer {
border-right: 1px solid #6262FF; font-size: 13px;
border-left: 1px solid #6262FF; top: 25px;
} border-bottom: 1px solid gray;
border-right: 1px solid gray;
div.window-outer border-left: 1px solid gray; }
{
font-size: 13px; div.window-inner {
top: 25px; padding: 7px; }
border-bottom: 1px solid gray;
border-right: 1px solid gray; div.window-close a {
border-left: 1px solid gray; color: white;
} border: 1px solid #014d8c; }
div.window-inner div.window-close a:hover {
{ background-color: #014D8C;
padding: 7px; border: 1px solid white; }
}
div.window-close a
{
color: white;
border: 1px solid #014D8C;
}
div.window-close a:hover
{
background-color: #014D8C;
border: 1px solid white;
}
/* MDIWindow Styling | Normal state */ /* MDIWindow Styling | Normal state */
div.window-styled div.window-title, div.window-styled div.window-outer {
div.window-styled div.window-title, div.window-styled div.window-outer -webkit-box-shadow: 5px 5px 10px #1a1a1a;
{ -moz-box-shadow: 5px 5px 10px #1a1a1a;
-webkit-box-shadow: 5px 5px 10px #1a1a1a; box-shadow: 5px 5px 10px #1a1a1a; }
-moz-box-shadow: 5px 5px 10px #1a1a1a;
box-shadow: 5px 5px 10px #1a1a1a; div.window-styled div.window-title {
} background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #525252), color-stop(1, #91acbe));
background-image: -moz-linear-gradient(center bottom, #525252 0%, #91acbe 100%);
div.window-styled div.window-title filter: alpha(opacity=95);
{ opacity: 0.95; }
background-image: -webkit-gradient(
linear, div.window-styled div.window-outer {
left bottom, background-color: #F7F7F0;
left top, filter: alpha(opacity=95);
color-stop(0, rgb(82,82,82)), opacity: 0.95; }
color-stop(1, rgb(145,172,190))
); div.window-focused.window-styled div.window-title {
background-image: -moz-linear-gradient( background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0057b3), color-stop(1, #0099ff));
center bottom, background-image: -moz-linear-gradient(center bottom, #0057b3 0%, #0099ff 100%);
rgb(82,82,82) 0%, filter: alpha(opacity=85);
rgb(145,172,190) 100% opacity: 0.85; }
);
filter:alpha(opacity=95);
opacity:0.95;
}
div.window-styled div.window-outer
{
background-color: #F7F7F0;
filter:alpha(opacity=95);
opacity:0.95;
}
div.window-focused.window-styled div.window-title
{
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0, rgb(0,87,179)),
color-stop(1, rgb(0,153,255))
);
background-image: -moz-linear-gradient(
center bottom,
rgb(0,87,179) 0%,
rgb(0,153,255) 100%
);
filter:alpha(opacity=85);
opacity:0.85;
}
/* MDIWindow Styling | Dragging state */ /* MDIWindow Styling | Dragging state */
div.window-dragged div.window-title {
div.window-dragged div.window-title background-color: #0070D5;
{ background-image: none; }
background-color: #0070D5;
background-image: none; div.workspace-bar {
} height: 32px; }
div.workspace-bar div.window-dragged div.window-outer {
{ background: none; }
height: 32px;
} div.window-dragged div.window-title, div.window-dragged div.window-outer {
-webkit-box-shadow: none;
div.window-dragged div.window-outer -moz-box-shadow: none;
{ box-shadow: none; }
background: none;
} a.workspace-tab {
height: 32px;
div.window-dragged div.window-title, div.window-dragged div.window-outer width: 48px;
{ -webkit-border-top-left-radius: 10px;
-webkit-box-shadow: none; -webkit-border-top-right-radius: 10px;
-moz-box-shadow: none; -moz-border-radius-topleft: 10px;
box-shadow: none; -moz-border-radius-topright: 10px;
} border-top-left-radius: 10px;
border-top-right-radius: 10px;
a.workspace-tab border: 1px solid black;
{ background-color: #E9E9E9;
height: 32px; padding-top: 6px;
width: 48px; text-align: center;
-webkit-border-top-left-radius: 10px; text-decoration: none;
-webkit-border-top-right-radius: 10px; font-size: 14px;
-moz-border-radius-topleft: 10px; color: black;
-moz-border-radius-topright: 10px; margin-top: 10px;
border-top-left-radius: 10px; filter: alpha(opacity=95);
border-top-right-radius: 10px; opacity: 0.95; }
border: 1px solid black;
background-color: #E9E9E9; a.workspace-tab:hover {
padding-top: 6px; background-color: #DADADA;
text-align: center; margin-top: 0px; }
text-decoration: none;
font-size: 14px; a.workspace-tab-active {
color: black; font-weight: bold;
margin-top: 10px; background-color: #B9B9B9;
filter:alpha(opacity=95); color: #BC0000; }
opacity:0.95;
} a.workspace-tab-popup {
margin-top: 0px; }
a.workspace-tab:hover
{ a.workspace-tab-add {
background-color: #DADADA; background-color: #C8C8C8;
margin-top: 0px; filter: alpha(opacity=85);
} opacity: 0.85; }
a.workspace-tab-active
{
font-weight: bold;
background-color: #B9B9B9;
color: #BC0000;
}
a.workspace-tab-popup
{
margin-top: 0px;
}
a.workspace-tab-add
{
background-color: #C8C8C8;
filter:alpha(opacity=85);
opacity:0.85;
}

@ -1,315 +1,217 @@
.clear .clear {
{ clear: both; }
clear: both;
} #main_toolbar, #main_toolbar button {
font-family: "Istok Web"; }
#main_toolbar, #main_toolbar button
{ #main_toolbar {
font-family: "Istok Web"; padding: 36px 24px; }
}
form.inline {
#main_toolbar display: inline; }
{
padding: 36px 24px; #form_search {
} float: left;
margin-left: 12px; }
form.inline
{ #form_search input, #form_search button {
display: inline; height: 37px; }
}
#form_search input {
#form_search margin-left: 12px;
{ font-size: 16px;
float: left; padding: 7px 14px;
margin-left: 12px; border-top-right-radius: 0px;
} border-bottom-right-radius: 0px;
width: 290px; }
#form_search input, #form_search button
{ #form_search button {
height: 37px; border-top-left-radius: 0px;
} border-bottom-left-radius: 0px; }
#form_search input #autocomplete_search {
{ display: none;
margin-left: 12px; position: absolute;
font-size: 16px; width: 400px;
padding: 7px 14px; background-color: white;
border-top-right-radius: 0px; border: 1px solid #5a6dbb;
border-bottom-right-radius: 0px; border-radius: 0px 0px 3px 3px;
width: 290px; border-top: none;
} -webkit-font-smoothing: antialiased;
font-family: 'Istok Web';
#form_search button z-index: 9999999; }
{
border-top-left-radius: 0px; #autocomplete_search .entry {
border-bottom-left-radius: 0px; border-bottom: 1px solid #c2c2c2;
} padding: 7px 9px;
color: #393939; }
#autocomplete_search
{ #autocomplete_search .entry:last-child {
display: none; border-bottom: none; }
position: absolute;
width: 400px; #autocomplete_search .entry.selected {
background-color: white; background-color: #4253B6;
border: 1px solid #5A6DBB; color: white; }
border-radius: 0px 0px 3px 3px;
border-top: none; #autocomplete_search .entry .name {
-webkit-font-smoothing: antialiased; font-size: 18px;
font-family: 'Istok Web'; font-weight: bold; }
z-index: 9999999;
} #autocomplete_search .entry .description, #autocomplete_search .entry .date {
font-size: 14px; }
#autocomplete_search .entry
{ #autocomplete_search .entry .date {
border-bottom: 1px solid #C2C2C2; float: right;
padding: 7px 9px; color: gray; }
color: #393939;
} #autocomplete_search .entry.selected .date {
color: white; }
#autocomplete_search .entry:last-child
{ #autocomplete_search .loading, #autocomplete_search .noresults {
border-bottom: none; padding: 8px 10px;
} font-size: 17px; }
#autocomplete_search .entry.selected #autocomplete_search .loading {
{ font-style: italic; }
background-color: #4253B6;
color: white; .group-first, .group-middle {
} border-top-right-radius: 0px !important;
border-bottom-right-radius: 0px !important; }
#autocomplete_search .entry .name
{ .group-middle, .group-last {
font-size: 18px; border-top-left-radius: 0px !important;
font-weight: bold; border-bottom-left-radius: 0px !important; }
}
#main_toolbar a.add {
#autocomplete_search .entry .description, #autocomplete_search .entry .date float: left; }
{
font-size: 14px; .pure-button {
} padding: 7px 14px; }
#autocomplete_search .entry .date .pure-button.shadow {
{ text-shadow: 1px 1px 1px #424242;
float: right; -webkit-text-shadow: 1px 1px 1px #424242;
color: gray; -moz-text-shadow: 1px 1px 2px #424242;
} -o-text-shadow: 1px 1px 1px #424242;
-ms-text-shadow: 1px 1px 1px #424242; }
#autocomplete_search .entry.selected .date
{ .pure-button.add {
color: white; background-color: #15BA31;
} color: white; }
#autocomplete_search .loading, #autocomplete_search .noresults .pure-button.okay {
{ background-color: #148C29;
padding: 8px 10px; color: white; }
font-size: 17px;
} .pure-button.search {
background-color: #152DBA;
#autocomplete_search .loading color: white; }
{
font-style: italic; .pure-button i {
} margin-right: 8px;
position: relative;
.group-first, .group-middle top: 1px; }
{
border-top-right-radius: 0px !important; .element-group {
border-bottom-right-radius: 0px !important; display: block;
} float: left; }
.group-middle, .group-last .element-group * {
{ float: left; }
border-top-left-radius: 0px !important;
border-bottom-left-radius: 0px !important; h1.form {
} font-size: 16px;
margin-top: 0px;
#main_toolbar a.add margin-bottom: 6px; }
{
float: left; .form-block {
} margin-bottom: 5px; }
.pure-button .pure-form label {
{ font-size: 95%;
padding: 7px 14px; margin-left: 1px; }
}
.pure-form input.invalid, .pure-form textarea.invalid {
.pure-button.shadow border-color: #b60202 !important; }
{
text-shadow: 1px 1px 1px #424242; div.label {
-webkit-text-shadow: 1px 1px 1px #424242; padding-top: 4px; }
-moz-text-shadow: 1px 1px 2px #424242;
-o-text-shadow: 1px 1px 1px #424242; div.formfield, div.property {
-ms-text-shadow: 1px 1px 1px #424242; margin-bottom: 1px; }
}
textarea {
.pure-button.add height: 90px; }
{
background-color: #15BA31; .toolbarwindow-contents {
color: white; position: absolute;
} padding: 7px;
top: 0px;
.pure-button.okay left: 0px;
{ right: 0px;
background-color: #148C29; bottom: 38px;
color: white; overflow-x: hidden;
} overflow-y: auto; }
.pure-button.search .toolbarwindow-toolbar {
{ position: absolute;
background-color: #152DBA; padding: 4px;
color: white; height: 30px;
} left: 0px;
right: 0px;
.pure-button i bottom: 0px;
{ text-align: right; }
margin-right: 8px;
position: relative; i.required {
top: 1px; font-size: 10px;
} margin-left: 4px;
color: #9f444a;
.element-group float: right;
{ margin-right: 7px;
display: block; margin-top: 2px; }
float: left;
} i.error, i.notification {
font-size: 19px;
.element-group * margin-right: 9px !important; }
{
float: left; i.error {
} color: #FFD2D2; }
h1.form i.notification {
{ color: #CBCAFF; }
font-size: 16px;
margin-top: 0px; #notification_area {
margin-bottom: 6px; position: absolute;
} right: 0px;
bottom: 32px;
.form-block z-index: 2147483640; }
{
margin-bottom: 5px; .notification-header {
} margin-right: 6px;
font-weight: bold; }
.pure-form label
{ .notification-popup, .error-popup {
font-size: 95%; text-align: right; }
margin-left: 1px;
} .notification-popup .notification-contents, .error-popup .notification-contents {
text-align: left;
.pure-form input.invalid, .pure-form textarea.invalid display: inline-block;
{ border-radius: 6px;
border-color: #B60202 !important; margin-right: 19px;
} margin-top: 10px;
padding: 9px 14px;
div.label color: white;
{ font-size: 15px;
padding-top: 4px; filter: alpha(opacity=85);
} opacity: 0.85;
width: auto; }
div.formfield, div.property
{ .notification-popup .notification-contents {
margin-bottom: 1px; background-color: #2D2D2D; }
}
.error-popup .notification-contents {
textarea background-color: #371B1B; }
{
height: 90px; .notification-popup ul, .error-popup ul {
} margin: 4px 0px;
padding-left: 48px; }
.toolbarwindow-contents
{
position: absolute;
padding: 7px;
top: 0px;
left: 0px;
right: 0px;
bottom: 38px;
overflow-x: hidden;
overflow-y: auto;
}
.toolbarwindow-toolbar
{
position: absolute;
padding: 4px;
height: 30px;
left: 0px;
right: 0px;
bottom: 0px;
text-align: right;
}
i.required
{
font-size: 10px;
margin-left: 4px;
color: rgb(159,68,74);
float: right;
margin-right: 7px;
margin-top: 2px;
}
i.error, i.notification
{
font-size: 19px;
margin-right: 9px !important;
}
i.error
{
color: #FFD2D2;
}
i.notification
{
color: #CBCAFF;
}
#notification_area
{
position: absolute;
right: 0px;
bottom: 32px;
z-index: 2147483640;
}
.notification-header
{
margin-right: 6px;
font-weight: bold;
}
.notification-popup, .error-popup
{
text-align: right;
}
.notification-popup .notification-contents, .error-popup .notification-contents
{
text-align: left;
display: inline-block;
border-radius: 6px;
margin-right: 19px;
margin-top: 10px;
padding: 9px 14px;
color: white;
font-size: 15px;
filter: alpha(opacity=85);
opacity: 0.85;
width: auto;
}
.notification-popup .notification-contents
{
background-color: #2D2D2D;
}
.error-popup .notification-contents
{
background-color: #371B1B;
}
.notification-popup ul, .error-popup ul
{
margin: 4px 0px;
padding-left: 48px;
}

@ -0,0 +1,121 @@
html, body
{
overflow: hidden;
}
body
{
position: fixed;
margin: 0px;
width: 100%;
height: 100%;
}
#jsde_templates
{
display: none;
}
/* MDIWindow Styling | Generic */
div.window-wrapper
{
position: absolute;
}
div.window-title
{
position: absolute;
z-index: 2;
left: 0px;
right: 0px;
top: 0px;
cursor: default;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
div.window-outer
{
position: absolute;
z-index: 3;
left: 0px;
right: 0px;
bottom: 0px;
}
div.window-inner-wrapper
{
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
overflow-y: auto;
overflow-x: auto;
}
.window-noscroll
{
overflow-x: hidden !important;
overflow-y: hidden !important;
}
div.window-close
{
float: right;
}
div.window-close a
{
position: absolute;
right: 3px;
top: 2px;
display: block;
padding: 1px 4px;
text-decoration: none;
font-size: 12px;
border-radius: 5px;
}
/* MDIWindow Styling | Normal state */
div.window-styled div.window-inner
{
visibility: visible;
}
/* MDIWindow Styling | Dragging state */
div.window-dragged div.window-inner
{
visibility: hidden;
}
div.workspace-bar
{
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
}
a.workspace-tab
{
display: block;
float: left;
}
div.window-resizer
{
position: absolute;
width: 12px;
height: 12px;
bottom: -6px;
right: -6px;
cursor: se-resize;
}

@ -0,0 +1,198 @@
html,body
{
font-family: 'Varela Round', sans-serif, Trebuchet MS;
background-color: silver;
background-attachment:fixed;
background-position:center;
}
/* Temporary styles */
div#make-window
{
background-color: white;
border: 1px solid gray;
padding: 14px;
width: 350px;
filter:alpha(opacity=85);
opacity:0.85;
}
/* MDIWindow Styling | Generic */
div.window-title
{
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
height: 16px;
color: white;
font-size: 14px;
font-weight: bold;
padding: 4px;
padding-left: 7px;
border-top: 1px solid #959595;
border-right: 1px solid #959595;
border-left: 1px solid #959595;
}
div.window-focused div.window-title
{
border-top: 1px solid #6262FF;
border-right: 1px solid #6262FF;
border-left: 1px solid #6262FF;
}
div.window-outer
{
font-size: 13px;
top: 25px;
border-bottom: 1px solid gray;
border-right: 1px solid gray;
border-left: 1px solid gray;
}
div.window-inner
{
padding: 7px;
}
div.window-close a
{
color: white;
border: 1px solid #014D8C;
}
div.window-close a:hover
{
background-color: #014D8C;
border: 1px solid white;
}
/* MDIWindow Styling | Normal state */
div.window-styled div.window-title, div.window-styled div.window-outer
{
-webkit-box-shadow: 5px 5px 10px #1a1a1a;
-moz-box-shadow: 5px 5px 10px #1a1a1a;
box-shadow: 5px 5px 10px #1a1a1a;
}
div.window-styled div.window-title
{
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0, rgb(82,82,82)),
color-stop(1, rgb(145,172,190))
);
background-image: -moz-linear-gradient(
center bottom,
rgb(82,82,82) 0%,
rgb(145,172,190) 100%
);
filter:alpha(opacity=95);
opacity:0.95;
}
div.window-styled div.window-outer
{
background-color: #F7F7F0;
filter:alpha(opacity=95);
opacity:0.95;
}
div.window-focused.window-styled div.window-title
{
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0, rgb(0,87,179)),
color-stop(1, rgb(0,153,255))
);
background-image: -moz-linear-gradient(
center bottom,
rgb(0,87,179) 0%,
rgb(0,153,255) 100%
);
filter:alpha(opacity=85);
opacity:0.85;
}
/* MDIWindow Styling | Dragging state */
div.window-dragged div.window-title
{
background-color: #0070D5;
background-image: none;
}
div.workspace-bar
{
height: 32px;
}
div.window-dragged div.window-outer
{
background: none;
}
div.window-dragged div.window-title, div.window-dragged div.window-outer
{
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
a.workspace-tab
{
height: 32px;
width: 48px;
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border: 1px solid black;
background-color: #E9E9E9;
padding-top: 6px;
text-align: center;
text-decoration: none;
font-size: 14px;
color: black;
margin-top: 10px;
filter:alpha(opacity=95);
opacity:0.95;
}
a.workspace-tab:hover
{
background-color: #DADADA;
margin-top: 0px;
}
a.workspace-tab-active
{
font-weight: bold;
background-color: #B9B9B9;
color: #BC0000;
}
a.workspace-tab-popup
{
margin-top: 0px;
}
a.workspace-tab-add
{
background-color: #C8C8C8;
filter:alpha(opacity=85);
opacity:0.85;
}

@ -0,0 +1,315 @@
.clear
{
clear: both;
}
#main_toolbar, #main_toolbar button
{
font-family: "Istok Web";
}
#main_toolbar
{
padding: 36px 24px;
}
form.inline
{
display: inline;
}
#form_search
{
float: left;
margin-left: 12px;
}
#form_search input, #form_search button
{
height: 37px;
}
#form_search input
{
margin-left: 12px;
font-size: 16px;
padding: 7px 14px;
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
width: 290px;
}
#form_search button
{
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
#autocomplete_search
{
display: none;
position: absolute;
width: 400px;
background-color: white;
border: 1px solid #5A6DBB;
border-radius: 0px 0px 3px 3px;
border-top: none;
-webkit-font-smoothing: antialiased;
font-family: 'Istok Web';
z-index: 9999999;
}
#autocomplete_search .entry
{
border-bottom: 1px solid #C2C2C2;
padding: 7px 9px;
color: #393939;
}
#autocomplete_search .entry:last-child
{
border-bottom: none;
}
#autocomplete_search .entry.selected
{
background-color: #4253B6;
color: white;
}
#autocomplete_search .entry .name
{
font-size: 18px;
font-weight: bold;
}
#autocomplete_search .entry .description, #autocomplete_search .entry .date
{
font-size: 14px;
}
#autocomplete_search .entry .date
{
float: right;
color: gray;
}
#autocomplete_search .entry.selected .date
{
color: white;
}
#autocomplete_search .loading, #autocomplete_search .noresults
{
padding: 8px 10px;
font-size: 17px;
}
#autocomplete_search .loading
{
font-style: italic;
}
.group-first, .group-middle
{
border-top-right-radius: 0px !important;
border-bottom-right-radius: 0px !important;
}
.group-middle, .group-last
{
border-top-left-radius: 0px !important;
border-bottom-left-radius: 0px !important;
}
#main_toolbar a.add
{
float: left;
}
.pure-button
{
padding: 7px 14px;
}
.pure-button.shadow
{
text-shadow: 1px 1px 1px #424242;
-webkit-text-shadow: 1px 1px 1px #424242;
-moz-text-shadow: 1px 1px 2px #424242;
-o-text-shadow: 1px 1px 1px #424242;
-ms-text-shadow: 1px 1px 1px #424242;
}
.pure-button.add
{
background-color: #15BA31;
color: white;
}
.pure-button.okay
{
background-color: #148C29;
color: white;
}
.pure-button.search
{
background-color: #152DBA;
color: white;
}
.pure-button i
{
margin-right: 8px;
position: relative;
top: 1px;
}
.element-group
{
display: block;
float: left;
}
.element-group *
{
float: left;
}
h1.form
{
font-size: 16px;
margin-top: 0px;
margin-bottom: 6px;
}
.form-block
{
margin-bottom: 5px;
}
.pure-form label
{
font-size: 95%;
margin-left: 1px;
}
.pure-form input.invalid, .pure-form textarea.invalid
{
border-color: #B60202 !important;
}
div.label
{
padding-top: 4px;
}
div.formfield, div.property
{
margin-bottom: 1px;
}
textarea
{
height: 90px;
}
.toolbarwindow-contents
{
position: absolute;
padding: 7px;
top: 0px;
left: 0px;
right: 0px;
bottom: 38px;
overflow-x: hidden;
overflow-y: auto;
}
.toolbarwindow-toolbar
{
position: absolute;
padding: 4px;
height: 30px;
left: 0px;
right: 0px;
bottom: 0px;
text-align: right;
}
i.required
{
font-size: 10px;
margin-left: 4px;
color: rgb(159,68,74);
float: right;
margin-right: 7px;
margin-top: 2px;
}
i.error, i.notification
{
font-size: 19px;
margin-right: 9px !important;
}
i.error
{
color: #FFD2D2;
}
i.notification
{
color: #CBCAFF;
}
#notification_area
{
position: absolute;
right: 0px;
bottom: 32px;
z-index: 2147483640;
}
.notification-header
{
margin-right: 6px;
font-weight: bold;
}
.notification-popup, .error-popup
{
text-align: right;
}
.notification-popup .notification-contents, .error-popup .notification-contents
{
text-align: left;
display: inline-block;
border-radius: 6px;
margin-right: 19px;
margin-top: 10px;
padding: 9px 14px;
color: white;
font-size: 15px;
filter: alpha(opacity=85);
opacity: 0.85;
width: auto;
}
.notification-popup .notification-contents
{
background-color: #2D2D2D;
}
.error-popup .notification-contents
{
background-color: #371B1B;
}
.notification-popup ul, .error-popup ul
{
margin: 4px 0px;
padding-left: 48px;
}
Loading…
Cancel
Save