refactor(global): make more configurable

pull/46/head
alex 2016-04-25 17:36:18 +03:00 committed by kostya.danovsky
parent c0d40df904
commit c52bbb091a
8 changed files with 14 additions and 19 deletions

View File

@ -13,7 +13,7 @@ html, body {
body { body {
font: 12px/16px $font-family; font: 12px/16px $font-family;
color: $default-text; color: $default-text;
background-color: $default; @include main-background();
display: flex; display: flex;
align-items: center; align-items: center;
} }
@ -21,9 +21,10 @@ body {
.page-not-found-modal { .page-not-found-modal {
width: 638px; width: 638px;
margin: 0 auto; margin: 0 auto;
@include bg-translucent-dark(0.5);
border-radius: 5px; border-radius: 5px;
font-weight: $font-light; font-weight: $font-light;
color: $default-text; color: #ffffff;
padding: 32px; padding: 32px;
text-align: center; text-align: center;
@ -46,4 +47,3 @@ body {
} }
} }
} }

View File

@ -666,7 +666,7 @@
.compose-footer { .compose-footer {
padding: 2px 4px; padding: 2px 4px;
background-color: $input-border; background-color: whitesmoke;
.btn-send { .btn-send {
background-color: $primary-light; background-color: $primary-light;
color: white; color: white;
@ -696,7 +696,7 @@
} }
.compose-container { .compose-container {
background-color: $input-border; background-color: whitesmoke;
.ta-text.ta-editor { .ta-text.ta-editor {
background-color: $input-border; background-color: $input-border;
div { div {
@ -754,10 +754,9 @@
} }
.ta-toolbar { .ta-toolbar {
.btn { .btn {
border-width: 1px;
border-radius: 0; border-radius: 0;
color: $dropdown-text; color: $dropdown-text;
border-color: transparent; border: 1px transparent;
&.active { &.active {
box-shadow: none; box-shadow: none;
background-color: rgba(0, 0, 0, .12); background-color: rgba(0, 0, 0, .12);

View File

@ -35,7 +35,7 @@
.form-control{ .form-control{
color: $github-color; color: $github-color;
background-color: transparent; background-color: transparent;
border: 1px solid $input-border; border: 1px solid $select-border;
@include placeholderStyle($dropdown-text, 0.9); @include placeholderStyle($dropdown-text, 0.9);
} }
.modal-body p, .modal-body div, .modal-body span{ .modal-body p, .modal-body div, .modal-body span{

View File

@ -149,7 +149,7 @@ a.sn-link {
font-size: 17px; font-size: 17px;
margin-right: 8px; margin-right: 8px;
background-color: rgba(0,0,0,.15); background-color: rgba(0,0,0,.15);
color: $default; color: $default-text;
} }
span { span {

View File

@ -357,7 +357,7 @@ a.learn-more {
h1 { h1 {
font-weight: $font-bold; font-weight: $font-bold;
width: 100%; width: 100%;
color: $default; color: $default-text;
margin-bottom: 10px; margin-bottom: 10px;
} }
p { p {

View File

@ -433,7 +433,7 @@
.leaflet-popup-content { .leaflet-popup-content {
margin: 13px 19px; margin: 13px 19px;
line-height: 1.4; line-height: 1.4;
color: $default-text; color: $dropdown-text;
} }
.leaflet-popup-content p { .leaflet-popup-content p {

View File

@ -156,7 +156,7 @@
border-top-left-radius: 5px; border-top-left-radius: 5px;
} }
.dropdown-menu > li > a { .dropdown-menu > li > a {
color: $default-text; color: $dropdown-text;
} }
} }

View File

@ -55,7 +55,7 @@ div.blurCalendar{
} }
th, td { th, td {
border: 1px solid; border: 1px solid rgba(255,255,255,0.3);
padding: 0; padding: 0;
vertical-align: top; vertical-align: top;
} }
@ -94,7 +94,7 @@ div.blurCalendar{
.fc-unthemed { .fc-unthemed {
th, td, hr, thead, tbody, .fc-row, .fc-popover { th, td, hr, thead, tbody, .fc-row, .fc-popover {
border-color: $border; border-color: rgba(255,255,255,0.3);
} }
.fc-popover { .fc-popover {
@ -740,10 +740,6 @@ a.fc-more {
} }
} }
.fc td{
border-color: $border;
}
.fc-today-button, .fc-month-button, .fc-agendaWeek-button, .fc-agendaDay-button { .fc-today-button, .fc-month-button, .fc-agendaWeek-button, .fc-agendaDay-button {
display: none; display: none;
} }