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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -55,7 +55,7 @@ div.blurCalendar{
}
th, td {
border: 1px solid;
border: 1px solid rgba(255,255,255,0.3);
padding: 0;
vertical-align: top;
}
@ -94,7 +94,7 @@ div.blurCalendar{
.fc-unthemed {
th, td, hr, thead, tbody, .fc-row, .fc-popover {
border-color: $border;
border-color: rgba(255,255,255,0.3);
}
.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 {
display: none;
}