2013-02-06 03:16:51 +08:00
|
|
|
// these are the styles associated with the Discourse admin section
|
2013-08-29 01:58:44 +08:00
|
|
|
@import "common/foundation/variables";
|
|
|
|
@import "common/foundation/mixins";
|
|
|
|
@import "common/foundation/helpers";
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2015-08-31 03:09:28 +08:00
|
|
|
$mobile-breakpoint: 700px;
|
2015-08-02 06:00:39 +08:00
|
|
|
|
|
|
|
// Change the box model for .admin-content
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
.admin-content {
|
|
|
|
box-sizing: border-box;
|
|
|
|
*, *:before, *:after {
|
|
|
|
box-sizing: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="text"] {
|
|
|
|
// Desktop/_discourse.scss sets a height on text-input elements. Using `box-sizing: border-box`
|
|
|
|
// this value either needs to be increased or set to auto. `mobile.css` seems to not set a height on text-inputs.
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-17 01:35:23 +08:00
|
|
|
.admin-contents {
|
|
|
|
position: relative;
|
|
|
|
margin-left: -10px;
|
|
|
|
margin-right: -10px;
|
|
|
|
}
|
|
|
|
|
2013-10-29 01:46:59 +08:00
|
|
|
.admin-contents table {
|
2014-02-13 12:36:10 +08:00
|
|
|
width: 100%;
|
|
|
|
tr {text-align: left;}
|
|
|
|
td, th {padding: 8px;}
|
2015-06-15 10:59:49 +08:00
|
|
|
th {border-top: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);}
|
|
|
|
td {border-bottom: 1px solid dark-light-diff($primary, $secondary, 90%, -60%); border-top: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);}
|
2014-05-06 13:50:51 +08:00
|
|
|
tr:hover { background-color: darken($secondary, 2.5%); }
|
2014-12-03 04:30:57 +08:00
|
|
|
tr.selected { background-color: lighten($primary, 80%); }
|
2014-03-06 14:14:51 +08:00
|
|
|
.filters input { margin-bottom: 0; }
|
2013-10-29 01:46:59 +08:00
|
|
|
}
|
|
|
|
|
2014-06-23 15:09:18 +08:00
|
|
|
td.flaggers td {
|
|
|
|
border-bottom: none;
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
2015-11-24 05:45:05 +08:00
|
|
|
.site-texts {
|
|
|
|
.search-area {
|
|
|
|
margin-bottom: 2em;
|
|
|
|
p {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2015-12-01 04:22:58 +08:00
|
|
|
.site-text-search {
|
2015-11-24 05:45:05 +08:00
|
|
|
padding: 0.5em;
|
|
|
|
font-size: 1em;
|
|
|
|
width: 50%;
|
|
|
|
}
|
2015-12-01 04:22:58 +08:00
|
|
|
|
|
|
|
.extra-options {
|
|
|
|
float: right;
|
|
|
|
input[type=checkbox] {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-24 05:45:05 +08:00
|
|
|
}
|
|
|
|
.text-highlight {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-text {
|
|
|
|
cursor: pointer;
|
|
|
|
border-bottom: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
|
2015-12-01 04:22:58 +08:00
|
|
|
&.overridden {
|
|
|
|
background-color: dark-light-diff($highlight, $secondary, 50%, -60%);
|
|
|
|
}
|
|
|
|
|
2015-11-24 05:45:05 +08:00
|
|
|
h3 {
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.edit {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.site-text-value {
|
|
|
|
margin: 0.5em 5em 0.5em 0;
|
|
|
|
max-height: 100px;
|
|
|
|
color: dark-light-diff($primary, $secondary, 40%, -10%);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit-site-text {
|
|
|
|
textarea {
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.save-messages, .title {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.go-back {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-08 13:20:38 +08:00
|
|
|
.content-list li a span.count {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 0.857em;
|
2013-05-08 13:20:38 +08:00
|
|
|
float: right;
|
|
|
|
margin-right: 10px;
|
2015-06-15 10:59:49 +08:00
|
|
|
background-color: dark-light-diff($primary, $secondary, 90%, -60%);
|
2013-05-08 13:20:38 +08:00
|
|
|
padding: 2px 5px;
|
|
|
|
border-radius: 5px;
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary;
|
2013-05-08 13:20:38 +08:00
|
|
|
}
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
.admin-content {
|
|
|
|
margin-bottom: 50px;
|
|
|
|
.admin-contents {
|
2015-08-02 06:00:39 +08:00
|
|
|
padding: 8px 0;
|
2015-03-23 22:23:42 +08:00
|
|
|
@include clearfix();
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
2013-03-18 03:02:36 +08:00
|
|
|
|
2014-11-06 03:46:27 +08:00
|
|
|
.view-options {
|
|
|
|
float: right;
|
|
|
|
}
|
2013-03-18 03:02:36 +08:00
|
|
|
table.report {
|
2014-03-27 00:03:58 +08:00
|
|
|
margin-top: 20px;
|
2013-03-18 03:02:36 +08:00
|
|
|
tr {
|
|
|
|
th:nth-of-type(1) {
|
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar-container {
|
|
|
|
float: left;
|
|
|
|
width: 300px;
|
|
|
|
margin-right: 15px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
.bar {
|
|
|
|
margin-top: 5px;
|
2014-05-06 13:50:51 +08:00
|
|
|
background-color: $tertiary;
|
2013-03-18 03:02:36 +08:00
|
|
|
display: inline-block;
|
|
|
|
text-align: right;
|
|
|
|
padding-right: 8px;
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $secondary;
|
2013-03-18 03:02:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
|
2014-07-08 04:18:18 +08:00
|
|
|
.ip-lookup {
|
2014-06-16 00:14:19 +08:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
.location-box {
|
|
|
|
position: absolute;
|
|
|
|
width: 460px;
|
|
|
|
right: 0px;
|
|
|
|
z-index: 990;
|
2014-08-06 21:31:13 +08:00
|
|
|
box-shadow: 0 2px 6px rgba(0,0,0, .8);
|
2014-06-16 00:14:19 +08:00
|
|
|
margin-top: -2px;
|
|
|
|
background-color: $secondary;
|
|
|
|
padding: 12px 12px 5px;
|
2014-11-17 21:51:28 +08:00
|
|
|
|
|
|
|
.other-accounts {
|
2014-11-21 02:59:20 +08:00
|
|
|
margin: 5px 0 0;
|
2014-11-17 21:51:28 +08:00
|
|
|
max-height: 200px;
|
|
|
|
overflow: auto;
|
2014-11-21 02:59:20 +08:00
|
|
|
width: 455px;
|
2014-11-17 21:51:28 +08:00
|
|
|
ul { margin: 0; }
|
|
|
|
li { list-style: none; }
|
2014-11-21 02:59:20 +08:00
|
|
|
tr td:first-of-type { width: 130px; }
|
2014-11-17 21:51:28 +08:00
|
|
|
}
|
2014-06-16 00:14:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-17 03:14:34 +08:00
|
|
|
.admin-container {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2015-08-02 06:00:39 +08:00
|
|
|
.admin-container .controls {
|
|
|
|
@include clearfix;
|
2015-11-21 01:30:04 +08:00
|
|
|
|
|
|
|
.save-messages {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
2015-08-02 06:00:39 +08:00
|
|
|
}
|
|
|
|
|
2014-11-03 19:46:08 +08:00
|
|
|
.admin-title {
|
|
|
|
height: 45px;
|
|
|
|
}
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
.admin-controls {
|
2015-08-19 03:23:06 +08:00
|
|
|
background-color: dark-light-diff($primary, $secondary, 90%, -65%);
|
2014-03-06 14:14:51 +08:00
|
|
|
padding: 10px 10px 3px 0;
|
2015-08-02 06:00:39 +08:00
|
|
|
@include clearfix;
|
2013-02-06 03:16:51 +08:00
|
|
|
.nav.nav-pills {
|
|
|
|
li.active {
|
|
|
|
a {
|
2015-08-19 03:23:06 +08:00
|
|
|
border-color: dark-light-diff($primary, $secondary, 90%, -90%);
|
|
|
|
background-color: dark-light-diff($primary, $secondary, 40%, -10%);
|
2013-02-06 03:16:51 +08:00
|
|
|
&:hover {
|
2015-08-19 03:23:06 +08:00
|
|
|
background-color: dark-light-diff($primary, $secondary, 40%, -10%);
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h1 {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1.429em;
|
2013-02-06 03:16:51 +08:00
|
|
|
line-height: 25px;
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary;
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
.controls {
|
2013-10-30 05:03:28 +08:00
|
|
|
margin-left: 10px;
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
2015-08-17 01:35:23 +08:00
|
|
|
|
|
|
|
.controls .menu-toggle {
|
|
|
|
display: none;
|
|
|
|
float: left;
|
|
|
|
font-size: 24px;
|
|
|
|
padding: 3px 6px;
|
|
|
|
margin-right: 32px;
|
|
|
|
border: 1px solid lighten($primary, 40%);
|
|
|
|
border-radius: 3px;
|
|
|
|
background: transparent;
|
|
|
|
color: $primary;
|
|
|
|
&:hover {
|
|
|
|
background-color: lighten($primary, 60%);
|
|
|
|
}
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
button {
|
|
|
|
margin-right: 5px;
|
2014-03-03 14:16:30 +08:00
|
|
|
|
2013-10-30 05:03:28 +08:00
|
|
|
}
|
|
|
|
input[type=text] {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
.result-message {
|
|
|
|
display: inline-block;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
.username {
|
|
|
|
input[type=text] {
|
|
|
|
width: 240px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.search {
|
2013-03-07 01:07:09 +08:00
|
|
|
float: right;
|
|
|
|
margin-left: 10px;
|
2013-02-06 03:16:51 +08:00
|
|
|
label {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2015-08-02 06:00:39 +08:00
|
|
|
.controls {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2015-08-02 07:57:41 +08:00
|
|
|
// Hide the search checkbox for very small screens
|
2015-08-02 06:00:39 +08:00
|
|
|
// Todo: find somewhere to display it - probably requires switching its order in the html
|
2015-08-31 01:36:54 +08:00
|
|
|
@media (max-width: 550px) {
|
2015-08-02 06:00:39 +08:00
|
|
|
display: none;
|
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
2013-06-04 04:12:24 +08:00
|
|
|
.toggle {
|
|
|
|
margin-top: 8px;
|
|
|
|
float: right;
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2016-04-22 03:00:28 +08:00
|
|
|
#last-seen input[type="text"] {
|
2015-10-31 02:05:54 +08:00
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
.ac-wrap {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
|
2015-10-27 03:56:59 +08:00
|
|
|
.paste-users {
|
|
|
|
width: 400px;
|
|
|
|
height: 150px;
|
|
|
|
}
|
|
|
|
|
2015-01-06 01:51:45 +08:00
|
|
|
.groups, .badges {
|
|
|
|
.form-horizontal {
|
|
|
|
label {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input, textarea, select {
|
|
|
|
width: 350px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="checkbox"] {
|
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-07 06:32:59 +08:00
|
|
|
.admin-nav {
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 18.018%;
|
2015-08-17 01:35:23 +08:00
|
|
|
position: relative;
|
|
|
|
// The admin-nav becomes a slide-out menu at the mobile-nav breakpoint
|
2015-08-02 06:00:39 +08:00
|
|
|
@media (max-width: $mobile-breakpoint) {
|
2015-11-13 02:01:12 +08:00
|
|
|
position: absolute;
|
2015-08-17 01:35:23 +08:00
|
|
|
z-index: 0;
|
|
|
|
width: 50%;
|
2015-08-02 06:00:39 +08:00
|
|
|
}
|
2014-02-24 09:47:44 +08:00
|
|
|
margin-top: 30px;
|
2013-11-17 03:14:34 +08:00
|
|
|
.nav-stacked {
|
|
|
|
border-right: none;
|
2015-08-17 01:35:23 +08:00
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
//margin-right: 10px;
|
|
|
|
}
|
2013-11-17 03:14:34 +08:00
|
|
|
}
|
2013-11-16 04:22:42 +08:00
|
|
|
li a.active {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $secondary;
|
2014-05-14 02:50:42 +08:00
|
|
|
background-color: $quaternary;
|
2013-11-15 04:26:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-07 06:32:59 +08:00
|
|
|
.admin-detail {
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 76.5765%;
|
2015-08-02 06:00:39 +08:00
|
|
|
@media (max-width: $mobile-breakpoint) {
|
2015-08-17 01:35:23 +08:00
|
|
|
z-index: 10;
|
|
|
|
width: 100%;
|
2015-08-02 06:00:39 +08:00
|
|
|
}
|
2015-08-17 01:35:23 +08:00
|
|
|
background-color: $secondary;
|
|
|
|
// Todo: set this properly - it needs to be >= the menu height
|
|
|
|
min-height: 875px;
|
2013-11-17 03:14:34 +08:00
|
|
|
margin-left: 0;
|
2015-06-15 10:59:49 +08:00
|
|
|
border-left: solid 1px dark-light-diff($primary, $secondary, 90%, -60%);
|
2013-11-17 03:14:34 +08:00
|
|
|
padding: 30px 0 30px 30px;
|
2015-08-02 06:00:39 +08:00
|
|
|
@media (max-width: $mobile-breakpoint) {
|
2015-08-17 01:35:23 +08:00
|
|
|
padding: 30px 0;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin-detail.mobile-open {
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
2015-08-31 01:30:56 +08:00
|
|
|
transition: transform 0.3s ease;
|
2015-08-31 01:02:12 +08:00
|
|
|
@include transform(translateX(50%));
|
2015-08-17 01:35:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin-detail.mobile-closed {
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
2015-08-31 01:30:56 +08:00
|
|
|
transition: transform 0.3s ease;
|
2015-08-31 01:02:12 +08:00
|
|
|
@include transform(translateX(0));
|
2015-08-02 06:00:39 +08:00
|
|
|
}
|
2013-11-16 04:22:42 +08:00
|
|
|
}
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
.settings {
|
2015-08-17 01:35:23 +08:00
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
2013-02-06 03:16:51 +08:00
|
|
|
.setting {
|
|
|
|
padding-bottom: 20px;
|
2013-11-16 04:22:42 +08:00
|
|
|
|
|
|
|
.setting-label {
|
|
|
|
float: left;
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 17.6576%;
|
2013-11-16 04:22:42 +08:00
|
|
|
margin-right: 12px;
|
2015-08-02 06:00:39 +08:00
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
float: none;
|
|
|
|
margin-right: 0;
|
|
|
|
width: 100%;
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 6px;
|
|
|
|
}
|
|
|
|
}
|
2013-11-16 04:22:42 +08:00
|
|
|
}
|
|
|
|
.setting-value {
|
|
|
|
float: left;
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 53%;
|
2016-05-09 14:37:51 +08:00
|
|
|
padding-right: 20px;
|
2015-08-22 02:39:21 +08:00
|
|
|
.category-group {
|
|
|
|
width: 95%;
|
|
|
|
}
|
2015-08-02 06:00:39 +08:00
|
|
|
@media (max-width: $mobile-breakpoint) {
|
2014-06-21 05:46:25 +08:00
|
|
|
width: 100%;
|
2016-05-09 14:37:51 +08:00
|
|
|
padding-right: 0;
|
2014-06-21 05:46:25 +08:00
|
|
|
}
|
2015-08-02 06:00:39 +08:00
|
|
|
.select2-container {
|
|
|
|
width: 100% !important; // Needs !important to override hard-coded value
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
width: 100% !important; // !important overrides hard-coded mobile width of 68px
|
|
|
|
}
|
|
|
|
}
|
2014-06-21 05:46:25 +08:00
|
|
|
.select2-container-multi .select2-choices {
|
|
|
|
border: none;
|
|
|
|
}
|
2013-11-16 04:22:42 +08:00
|
|
|
}
|
|
|
|
.setting-controls {
|
|
|
|
float: left;
|
|
|
|
}
|
2013-11-17 03:14:34 +08:00
|
|
|
.input-setting-string {
|
2016-05-09 14:37:51 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
height: 30px;
|
|
|
|
width: 100%;
|
2015-08-02 06:00:39 +08:00
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2013-11-17 03:14:34 +08:00
|
|
|
}
|
2014-03-30 13:32:33 +08:00
|
|
|
.input-setting-list {
|
2015-08-02 06:00:39 +08:00
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2014-03-30 13:32:33 +08:00
|
|
|
padding: 1px;
|
2014-05-07 11:53:04 +08:00
|
|
|
background-color: $secondary;
|
2015-06-15 10:59:49 +08:00
|
|
|
border: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
2014-03-30 13:32:33 +08:00
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: inset 0 1px 1px rgba(51, 51, 51, 0.3);
|
|
|
|
transition: border linear 0.2s, box-shadow linear 0.2s;
|
|
|
|
|
2014-06-01 22:36:26 +08:00
|
|
|
li.select2-search-choice {
|
|
|
|
cursor: pointer;
|
|
|
|
.select2-search-choice-close {
|
|
|
|
content: "x"
|
2014-03-30 13:32:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-01 22:36:26 +08:00
|
|
|
li.sortable-placeholder {
|
|
|
|
padding: 3px 5px 3px 18px;
|
|
|
|
margin: 3px 0px 3px 5px;
|
|
|
|
position: relative;
|
|
|
|
line-height: 13px;
|
|
|
|
cursor: default;
|
|
|
|
border: 1px dashed #AAA;
|
|
|
|
border-radius: 3px;
|
|
|
|
background-clip: padding-box;
|
|
|
|
-moz-user-select: none;
|
2015-08-02 06:00:39 +08:00
|
|
|
background-color: transparent;
|
2014-06-01 22:36:26 +08:00
|
|
|
width: 3em;
|
|
|
|
height: 1em;
|
2014-03-30 13:32:33 +08:00
|
|
|
}
|
|
|
|
|
2014-06-01 22:36:26 +08:00
|
|
|
}
|
2013-11-16 04:22:42 +08:00
|
|
|
|
2014-06-10 03:17:36 +08:00
|
|
|
.desc, .validation-error {
|
2013-02-06 03:16:51 +08:00
|
|
|
padding-top: 3px;
|
2014-03-22 14:06:53 +08:00
|
|
|
font-size: 80%;
|
|
|
|
line-height: 1.4em;
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
2013-03-02 01:45:25 +08:00
|
|
|
|
2014-06-10 03:17:36 +08:00
|
|
|
.validation-error {
|
|
|
|
color: $danger;
|
|
|
|
}
|
|
|
|
|
|
|
|
.desc {
|
2015-08-20 17:42:12 +08:00
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
2014-06-10 03:17:36 +08:00
|
|
|
}
|
|
|
|
|
2013-03-02 01:45:25 +08:00
|
|
|
h3 {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 0.929em;
|
2013-03-02 01:45:25 +08:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.setting.overridden {
|
|
|
|
h3 {
|
2014-05-07 11:53:04 +08:00
|
|
|
color: scale-color($highlight, $lightness: -50%);
|
2013-03-02 01:45:25 +08:00
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
2015-03-03 01:12:19 +08:00
|
|
|
|
|
|
|
.setting.overridden.string {
|
|
|
|
input[type=text] {
|
|
|
|
background-color: dark-light-diff($highlight, $secondary, 50%, -60%);
|
|
|
|
}
|
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
section.details {
|
|
|
|
h1 {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1.286em;
|
2014-08-28 01:52:01 +08:00
|
|
|
color: $primary;
|
|
|
|
padding: 5px 10px;
|
|
|
|
margin: 30px 0 5px 0;
|
2015-06-15 10:59:49 +08:00
|
|
|
border-bottom: 5px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#selected-controls {
|
2014-05-07 11:53:04 +08:00
|
|
|
background-color: scale-color($tertiary, $lightness: 75%);
|
2013-02-06 03:16:51 +08:00
|
|
|
padding: 8px;
|
|
|
|
min-height: 27px;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
width: 1075px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 01:52:01 +08:00
|
|
|
.user-controls {
|
|
|
|
padding: 5px;
|
|
|
|
clear: both;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2014-09-25 14:38:44 +08:00
|
|
|
.display-row.associations .value {
|
2014-09-30 04:31:05 +08:00
|
|
|
width: 750px;
|
2014-09-25 14:38:44 +08:00
|
|
|
}
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
.display-row {
|
2013-06-06 22:51:33 +08:00
|
|
|
line-height: 30px;
|
2013-02-06 03:16:51 +08:00
|
|
|
padding: 5px;
|
|
|
|
&:nth-of-type(1) {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
2013-11-06 03:41:04 +08:00
|
|
|
&.highlight-danger {
|
2014-05-07 01:29:13 +08:00
|
|
|
background-color: scale-color($danger, $lightness: 50%);
|
2013-11-06 03:41:04 +08:00
|
|
|
}
|
2015-06-15 10:59:49 +08:00
|
|
|
border-top: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
2013-02-06 03:16:51 +08:00
|
|
|
&:before, &:after {
|
|
|
|
display: table;
|
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
&:after {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.field {
|
|
|
|
font-weight: bold;
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 17.65765%;
|
2013-02-06 03:16:51 +08:00
|
|
|
float: left;
|
|
|
|
margin-left: 12px;
|
|
|
|
}
|
|
|
|
.value {
|
|
|
|
width: 250px;
|
|
|
|
float: left;
|
|
|
|
margin-left: 12px;
|
|
|
|
}
|
2013-10-23 03:53:08 +08:00
|
|
|
.long-value {
|
|
|
|
width: 800px;
|
|
|
|
float: left;
|
|
|
|
margin-left: 12px;
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 0.929em;
|
2013-10-23 03:53:08 +08:00
|
|
|
|
|
|
|
button {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
.controls {
|
2014-03-15 17:16:29 +08:00
|
|
|
width: 480px;
|
2013-11-12 04:03:17 +08:00
|
|
|
float: left;
|
|
|
|
margin-left: 12px;
|
2013-02-06 03:16:51 +08:00
|
|
|
.btn {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-05 20:52:20 +08:00
|
|
|
// Badges area
|
|
|
|
.badges {
|
|
|
|
.content-list ul {
|
|
|
|
margin-bottom: 10px;
|
2014-05-19 13:20:57 +08:00
|
|
|
|
|
|
|
.list-badge {
|
|
|
|
float: right;
|
|
|
|
font-size: 11px;
|
|
|
|
font-weight: normal;
|
|
|
|
padding: 0 6px;
|
|
|
|
color: $secondary;
|
|
|
|
background-color: scale-color($tertiary, $lightness: 50%);
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
2014-03-05 20:52:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.current-badge {
|
|
|
|
margin: 20px;
|
2014-10-17 04:43:10 +08:00
|
|
|
|
|
|
|
p.help {
|
|
|
|
margin: 0;
|
2015-08-20 17:42:12 +08:00
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 40%), scale-color($secondary, $lightness: 60%));
|
2014-10-17 04:43:10 +08:00
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
2014-03-05 20:52:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-horizontal {
|
|
|
|
.delete-link {
|
|
|
|
margin-left: 15px;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2014-03-19 13:13:38 +08:00
|
|
|
textarea {
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-28 03:51:41 +08:00
|
|
|
.current-badge-actions {
|
|
|
|
margin: 10px;
|
|
|
|
padding: 10px;
|
2015-08-20 17:42:12 +08:00
|
|
|
border-top: 1px solid dark-light-choose(scale-color($primary, $lightness: 80%), scale-color($secondary, $lightness: 20%));
|
2014-06-28 03:51:41 +08:00
|
|
|
}
|
|
|
|
|
2014-03-19 13:13:38 +08:00
|
|
|
.buttons {
|
|
|
|
float: left;
|
|
|
|
width: 200px;
|
|
|
|
.saving {
|
|
|
|
padding: 5px 0 0 0;
|
|
|
|
margin-left: 10px;
|
|
|
|
width: 80px;
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary;
|
2014-03-19 13:13:38 +08:00
|
|
|
}
|
2014-03-05 20:52:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
FEATURE: Badge query validation, preview results, and EXPLAIN
Upon saving a badge or requesting a badge result preview,
BadgeGranter.contract_checks! will examine the provided badge SQL for
some contractual obligations - namely, the returned columns and use of
trigger parameters.
Saving the badge is wrapped in a transaction to make this easier, by
raising ActiveRecord::Rollback on a detected violation.
On the client, a modal view is added for the badge query sample run
results, named admin-badge-preview.
The preview action is moved up to the route.
The save action, on failure, triggers a 'saveError' action (also in the
route).
The preview action gains a new parameter, 'explain', which will give the
output of an EXPLAIN query for the badge sql, which can be used by forum
admins to estimate the cost of their badge queries.
The preview link is replaced by two links, one which omits (false) and
includes (true) the EXPLAIN query.
The Badge.save() method is amended to propogate errors.
Badge::Trigger gets some utility methods for use in the
BadgeGranter.contract_checks! method.
Additionally, extra checks outside of BadgeGranter.contract_checks! are
added in the preview() method, to cover cases of null granted_at
columns.
An uninitialized variable path is removed in the backfill() method.
TODO - it would be nice to be able to get the actual names of all
columns the provided query returns, so we could give more errors
2014-08-26 06:17:29 +08:00
|
|
|
.badge-query-preview {
|
|
|
|
.grant-count, .sample, .error-header {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2014-09-03 04:29:28 +08:00
|
|
|
.badge-errors {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1em;
|
2014-09-03 04:29:28 +08:00
|
|
|
line-height: 16px;
|
FEATURE: Badge query validation, preview results, and EXPLAIN
Upon saving a badge or requesting a badge result preview,
BadgeGranter.contract_checks! will examine the provided badge SQL for
some contractual obligations - namely, the returned columns and use of
trigger parameters.
Saving the badge is wrapped in a transaction to make this easier, by
raising ActiveRecord::Rollback on a detected violation.
On the client, a modal view is added for the badge query sample run
results, named admin-badge-preview.
The preview action is moved up to the route.
The save action, on failure, triggers a 'saveError' action (also in the
route).
The preview action gains a new parameter, 'explain', which will give the
output of an EXPLAIN query for the badge sql, which can be used by forum
admins to estimate the cost of their badge queries.
The preview link is replaced by two links, one which omits (false) and
includes (true) the EXPLAIN query.
The Badge.save() method is amended to propogate errors.
Badge::Trigger gets some utility methods for use in the
BadgeGranter.contract_checks! method.
Additionally, extra checks outside of BadgeGranter.contract_checks! are
added in the preview() method, to cover cases of null granted_at
columns.
An uninitialized variable path is removed in the backfill() method.
TODO - it would be nice to be able to get the actual names of all
columns the provided query returns, so we could give more errors
2014-08-26 06:17:29 +08:00
|
|
|
padding: 4px;
|
2015-06-15 10:59:49 +08:00
|
|
|
background-color: dark-light-diff($primary, $secondary, 90%, -60%);
|
FEATURE: Badge query validation, preview results, and EXPLAIN
Upon saving a badge or requesting a badge result preview,
BadgeGranter.contract_checks! will examine the provided badge SQL for
some contractual obligations - namely, the returned columns and use of
trigger parameters.
Saving the badge is wrapped in a transaction to make this easier, by
raising ActiveRecord::Rollback on a detected violation.
On the client, a modal view is added for the badge query sample run
results, named admin-badge-preview.
The preview action is moved up to the route.
The save action, on failure, triggers a 'saveError' action (also in the
route).
The preview action gains a new parameter, 'explain', which will give the
output of an EXPLAIN query for the badge sql, which can be used by forum
admins to estimate the cost of their badge queries.
The preview link is replaced by two links, one which omits (false) and
includes (true) the EXPLAIN query.
The Badge.save() method is amended to propogate errors.
Badge::Trigger gets some utility methods for use in the
BadgeGranter.contract_checks! method.
Additionally, extra checks outside of BadgeGranter.contract_checks! are
added in the preview() method, to cover cases of null granted_at
columns.
An uninitialized variable path is removed in the backfill() method.
TODO - it would be nice to be able to get the actual names of all
columns the provided query returns, so we could give more errors
2014-08-26 06:17:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.badge-query-plan {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 0.857em;
|
2014-09-03 04:29:28 +08:00
|
|
|
line-height: 13px;
|
|
|
|
padding: 4px;
|
2015-06-15 10:59:49 +08:00
|
|
|
background-color: dark-light-diff($primary, $secondary, 90%, -60%);
|
FEATURE: Badge query validation, preview results, and EXPLAIN
Upon saving a badge or requesting a badge result preview,
BadgeGranter.contract_checks! will examine the provided badge SQL for
some contractual obligations - namely, the returned columns and use of
trigger parameters.
Saving the badge is wrapped in a transaction to make this easier, by
raising ActiveRecord::Rollback on a detected violation.
On the client, a modal view is added for the badge query sample run
results, named admin-badge-preview.
The preview action is moved up to the route.
The save action, on failure, triggers a 'saveError' action (also in the
route).
The preview action gains a new parameter, 'explain', which will give the
output of an EXPLAIN query for the badge sql, which can be used by forum
admins to estimate the cost of their badge queries.
The preview link is replaced by two links, one which omits (false) and
includes (true) the EXPLAIN query.
The Badge.save() method is amended to propogate errors.
Badge::Trigger gets some utility methods for use in the
BadgeGranter.contract_checks! method.
Additionally, extra checks outside of BadgeGranter.contract_checks! are
added in the preview() method, to cover cases of null granted_at
columns.
An uninitialized variable path is removed in the backfill() method.
TODO - it would be nice to be able to get the actual names of all
columns the provided query returns, so we could give more errors
2014-08-26 06:17:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.count-warning {
|
|
|
|
background-color: dark-light-diff(rgba($danger,.7), $secondary, 50%, -60%);
|
|
|
|
margin: 0 0 7px 0;
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.heading {
|
|
|
|
color: $danger;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-06 01:51:45 +08:00
|
|
|
// Groups area
|
|
|
|
.groups {
|
|
|
|
.ac-wrap {
|
|
|
|
width: 100% !important;
|
2015-08-20 17:42:12 +08:00
|
|
|
border-color: dark-light-choose(scale-color($primary, $lightness: 75%), scale-color($secondary, $lightness: 25%));
|
2015-01-06 01:51:45 +08:00
|
|
|
.item {
|
2015-12-28 11:20:00 +08:00
|
|
|
margin-right: 10px;
|
2015-01-06 01:51:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.next, .previous {
|
|
|
|
color: #333 !important;
|
|
|
|
&.disabled {
|
|
|
|
color: #aaa !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.btn.add {
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
2015-01-22 03:52:48 +08:00
|
|
|
.controls {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2015-01-24 01:25:43 +08:00
|
|
|
.select2-container {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.select2-choices {
|
|
|
|
width: 100%;
|
2015-08-20 17:42:12 +08:00
|
|
|
border-color: dark-light-choose(scale-color($primary, $lightness: 75%), scale-color($secondary, $lightness: 25%));
|
2015-01-24 01:25:43 +08:00
|
|
|
}
|
2016-08-17 00:34:04 +08:00
|
|
|
.avatar-flair-preview {
|
|
|
|
position: relative;
|
|
|
|
width: 45px;
|
|
|
|
|
|
|
|
.avatar-flair.demo {
|
|
|
|
top: 25px;
|
|
|
|
&.rounded {
|
|
|
|
top: 23px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.form-horizontal {
|
|
|
|
.flair_inputs {
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
.flair_left {
|
|
|
|
float: left;
|
|
|
|
width: 60%;
|
|
|
|
input[name=flair_url] {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flair_right {
|
|
|
|
float: left;
|
|
|
|
margin-left: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.row.groups input[type='text'].flair_bg_color {
|
|
|
|
width: 200px;
|
2015-01-06 01:51:45 +08:00
|
|
|
}
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
// Customise area
|
|
|
|
.customize {
|
2015-01-02 08:25:15 +08:00
|
|
|
.admin-footer {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
.current-style.maximized {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 100000;
|
|
|
|
background-color: white;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
.wrapper {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
bottom: 10px;
|
|
|
|
left: 20px;
|
|
|
|
right: 20px;
|
|
|
|
}
|
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
.nav.nav-pills {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2013-04-10 13:55:20 +08:00
|
|
|
.content-list, .current-style {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.content-list ul {
|
2013-06-19 13:18:22 +08:00
|
|
|
margin-bottom: 10px;
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
.current-style {
|
2015-01-02 08:25:15 +08:00
|
|
|
.nav.nav-pills{
|
|
|
|
position: relative;
|
|
|
|
}
|
2015-01-14 18:52:42 +08:00
|
|
|
.toggle-mobile {
|
|
|
|
position: absolute;
|
|
|
|
right: 35px;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
2015-01-02 08:25:15 +08:00
|
|
|
.toggle-maximize {
|
|
|
|
position: absolute;
|
|
|
|
right: -5px;
|
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
.delete-link {
|
|
|
|
margin-left: 15px;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
.preview-link {
|
2014-02-24 09:47:44 +08:00
|
|
|
margin-left: 15px;
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
2015-05-17 09:15:42 +08:00
|
|
|
.export {
|
|
|
|
float: right;
|
|
|
|
}
|
2013-04-10 13:55:20 +08:00
|
|
|
padding-left: 10px;
|
2014-12-31 15:51:32 +08:00
|
|
|
width: 70%;
|
2013-02-06 03:16:51 +08:00
|
|
|
.style-name {
|
2014-12-31 15:51:32 +08:00
|
|
|
width: 350px;
|
2013-02-06 03:16:51 +08:00
|
|
|
height: 25px;
|
2015-08-02 06:00:39 +08:00
|
|
|
// Remove height to for `box-sizing: border-box`
|
|
|
|
height: auto;
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
.ace-wrapper {
|
|
|
|
position: relative;
|
2013-06-19 13:18:22 +08:00
|
|
|
height: 400px;
|
2013-02-06 03:16:51 +08:00
|
|
|
width: 100%;
|
|
|
|
}
|
2015-01-02 08:25:15 +08:00
|
|
|
&.maximized {
|
|
|
|
.admin-container {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 50px;
|
|
|
|
top: 80px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.admin-footer {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
|
|
|
.ace-wrapper {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
.ace_editor {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
.status-actions {
|
|
|
|
float: right;
|
2013-06-19 13:18:22 +08:00
|
|
|
margin-top: 7px;
|
2013-02-06 03:16:51 +08:00
|
|
|
span {
|
2014-02-24 09:47:44 +08:00
|
|
|
margin-right: 10px;
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.buttons {
|
|
|
|
float: left;
|
2013-04-10 13:55:20 +08:00
|
|
|
width: 200px;
|
|
|
|
.saving {
|
|
|
|
padding: 5px 0 0 0;
|
|
|
|
margin-left: 10px;
|
|
|
|
width: 80px;
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary;
|
2013-04-10 13:55:20 +08:00
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
}
|
2014-04-16 21:49:06 +08:00
|
|
|
.color-scheme {
|
|
|
|
.controls {
|
|
|
|
span, button, a {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.colors {
|
|
|
|
thead th { border: none; }
|
|
|
|
td.hex { width: 100px; }
|
2014-05-14 02:50:42 +08:00
|
|
|
td.actions { width: 200px; }
|
|
|
|
.hex-input { width: 80px; margin-bottom: 0; }
|
2014-05-03 05:46:03 +08:00
|
|
|
.hex { text-align: center; }
|
2015-08-20 17:42:12 +08:00
|
|
|
.description { color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%)); }
|
2014-04-16 21:49:06 +08:00
|
|
|
|
2014-05-03 05:46:03 +08:00
|
|
|
.invalid .hex input {
|
|
|
|
background-color: white;
|
|
|
|
color: black;
|
|
|
|
border-color: $danger;
|
|
|
|
}
|
2014-04-16 21:49:06 +08:00
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.admin-flags {
|
2016-06-22 22:32:50 +08:00
|
|
|
.hidden-post td.excerpt,
|
|
|
|
.hidden-post td.user {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.deleted td.excerpt,
|
|
|
|
.deleted td.user {
|
|
|
|
background-color: scale-color($danger, $lightness: 70%);
|
|
|
|
}
|
2013-06-17 15:15:56 +08:00
|
|
|
|
2014-09-12 02:07:39 +08:00
|
|
|
.message { background-color: dark-light-diff($highlight, $secondary, 50%, -70%); }
|
|
|
|
.message:hover { background-color: dark-light-diff($highlight, $secondary, 60%, -60%); }
|
2016-06-22 22:32:50 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
.excerpt {
|
2014-02-06 06:54:16 +08:00
|
|
|
padding: 8px;
|
2013-06-26 15:01:39 +08:00
|
|
|
word-wrap: break-word;
|
2014-07-29 01:17:37 +08:00
|
|
|
.fa { display: inline-block; }
|
|
|
|
h3 {
|
|
|
|
max-height: 1.2em;
|
|
|
|
overflow: hidden;
|
2014-10-07 16:29:44 +08:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 5px;
|
2014-07-29 01:17:37 +08:00
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
2016-06-22 22:32:50 +08:00
|
|
|
|
|
|
|
.flagged-posts { background: $danger; }
|
|
|
|
|
2013-06-20 15:42:15 +08:00
|
|
|
.action {
|
2013-06-21 15:29:54 +08:00
|
|
|
button { margin: 4px; }
|
|
|
|
text-align: right;
|
2014-07-29 01:17:37 +08:00
|
|
|
}
|
2013-02-06 03:16:51 +08:00
|
|
|
}
|
2013-03-08 00:07:59 +08:00
|
|
|
|
2013-03-15 00:28:35 +08:00
|
|
|
/* Dashboard */
|
|
|
|
|
|
|
|
.dashboard-left {
|
|
|
|
float: left;
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 60%;
|
2013-03-15 00:28:35 +08:00
|
|
|
}
|
2015-06-18 03:46:55 +08:00
|
|
|
|
2013-03-15 00:28:35 +08:00
|
|
|
.dashboard-right {
|
|
|
|
float: right;
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 40%;
|
2013-05-02 06:12:02 +08:00
|
|
|
.dashboard-stats {
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2013-03-15 00:28:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.version-check {
|
2014-09-12 02:45:35 +08:00
|
|
|
|
2015-07-31 18:34:39 +08:00
|
|
|
th {
|
|
|
|
text-align: left !important;
|
|
|
|
}
|
|
|
|
|
2013-03-15 00:28:35 +08:00
|
|
|
.version-number {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1.286em;
|
2013-03-20 01:51:09 +08:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.face {
|
|
|
|
width: 20px;
|
2013-03-15 00:28:35 +08:00
|
|
|
}
|
|
|
|
|
2013-12-10 05:27:49 +08:00
|
|
|
.version-notes .fa {
|
2013-03-15 00:28:35 +08:00
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.critical .version-notes .normal-note {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
&.normal .version-notes .critical-note {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-12-10 05:27:49 +08:00
|
|
|
.fa {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1.857em;
|
2013-03-15 00:28:35 +08:00
|
|
|
}
|
|
|
|
|
2013-11-05 01:51:01 +08:00
|
|
|
.up-to-date {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $success;
|
2013-03-15 00:28:35 +08:00
|
|
|
}
|
|
|
|
.updates-available {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $danger;
|
2013-03-15 00:28:35 +08:00
|
|
|
}
|
|
|
|
.critical-updates-available {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $danger;
|
2013-03-15 00:28:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.update-nag {
|
2013-12-10 05:27:49 +08:00
|
|
|
i.fa {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1.429em;
|
2013-03-15 00:28:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-23 03:53:08 +08:00
|
|
|
table.api-keys {
|
|
|
|
margin-top: 10px;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
th {
|
|
|
|
text-align: left;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.key {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 0.857em;
|
2013-10-23 03:53:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-08 00:07:59 +08:00
|
|
|
.dashboard-stats {
|
2013-04-17 22:25:28 +08:00
|
|
|
margin-bottom: 30px;
|
2014-07-10 07:56:35 +08:00
|
|
|
margin-right: 40px;
|
2013-04-17 06:37:35 +08:00
|
|
|
h4 {
|
|
|
|
font-weight: normal;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
2013-03-08 00:07:59 +08:00
|
|
|
table {
|
2013-03-12 23:57:33 +08:00
|
|
|
width: 100%;
|
2013-03-08 00:07:59 +08:00
|
|
|
|
2013-04-17 22:46:27 +08:00
|
|
|
.title {
|
2013-12-10 05:27:49 +08:00
|
|
|
i.fa {
|
2014-05-07 11:53:04 +08:00
|
|
|
color: $primary;
|
2013-04-17 22:46:27 +08:00
|
|
|
}
|
2015-07-22 19:19:15 +08:00
|
|
|
i.fa-heart {
|
|
|
|
color: $love;
|
|
|
|
}
|
2013-04-17 22:46:27 +08:00
|
|
|
}
|
|
|
|
|
2013-03-08 00:07:59 +08:00
|
|
|
th {
|
|
|
|
font-weight: normal;
|
|
|
|
text-align: center;
|
2014-09-08 10:46:04 +08:00
|
|
|
background: dark-light-diff($primary, $secondary, 80%, -65%);
|
2013-03-08 00:07:59 +08:00
|
|
|
}
|
2013-04-17 06:37:35 +08:00
|
|
|
th.title {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2013-03-20 02:17:32 +08:00
|
|
|
thead {
|
2013-04-23 23:48:26 +08:00
|
|
|
tr:hover > td {
|
2014-05-06 13:50:51 +08:00
|
|
|
background-color: $secondary;
|
2013-03-20 02:17:32 +08:00
|
|
|
}
|
|
|
|
}
|
2013-03-08 00:07:59 +08:00
|
|
|
|
|
|
|
td.value {
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
2013-03-31 02:07:25 +08:00
|
|
|
|
|
|
|
i {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.trending-up {
|
|
|
|
i.up {
|
2015-04-03 06:42:02 +08:00
|
|
|
color: $success;
|
2013-03-31 02:07:25 +08:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.trending-down {
|
|
|
|
i.down {
|
2015-04-03 06:42:02 +08:00
|
|
|
color: $danger;
|
2013-03-31 02:07:25 +08:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.no-change {
|
|
|
|
i.down {
|
|
|
|
display: inline;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
2013-03-08 00:07:59 +08:00
|
|
|
}
|
2015-07-23 02:15:58 +08:00
|
|
|
|
|
|
|
tr.reverse-colors {
|
|
|
|
td.value.trending-down i.down {
|
|
|
|
color: $success;
|
|
|
|
}
|
|
|
|
td.value.trending-up i.up {
|
|
|
|
color: $danger;
|
|
|
|
}
|
|
|
|
}
|
2013-03-08 00:07:59 +08:00
|
|
|
}
|
2013-03-16 04:17:19 +08:00
|
|
|
|
2013-03-20 11:18:00 +08:00
|
|
|
&.detected-problems {
|
2014-09-08 10:46:04 +08:00
|
|
|
background: dark-light-diff($primary, $secondary, 90%, -75%);
|
2013-03-20 11:18:00 +08:00
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
.look-here {
|
|
|
|
float: left;
|
2014-03-22 15:37:18 +08:00
|
|
|
margin: 20px 10px 0 10px;
|
2013-03-20 11:18:00 +08:00
|
|
|
|
2013-12-10 05:27:49 +08:00
|
|
|
.fa {
|
2015-06-18 03:46:55 +08:00
|
|
|
font-size: 2.286em;
|
2013-03-20 11:18:00 +08:00
|
|
|
vertical-align: middle;
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary
|
2013-03-20 11:18:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.problem-messages {
|
|
|
|
float: left;
|
2014-09-08 10:46:04 +08:00
|
|
|
width: 80%;
|
|
|
|
margin-left: 1%;
|
2013-04-05 04:16:58 +08:00
|
|
|
a {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2013-04-17 00:09:37 +08:00
|
|
|
.actions {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2013-11-19 02:44:55 +08:00
|
|
|
.btn {
|
2014-09-08 10:46:04 +08:00
|
|
|
background: dark-light-diff($primary, $secondary, 80%, -85%);
|
2014-03-22 15:37:18 +08:00
|
|
|
}
|
|
|
|
ul {
|
|
|
|
margin-left: 0;
|
2014-09-08 10:46:04 +08:00
|
|
|
padding-left: 20px;
|
|
|
|
li {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2014-03-22 15:37:18 +08:00
|
|
|
}
|
2013-03-20 11:18:00 +08:00
|
|
|
}
|
2014-02-24 09:47:44 +08:00
|
|
|
}
|
2013-03-20 11:18:00 +08:00
|
|
|
|
2013-03-16 04:17:19 +08:00
|
|
|
&.totals {
|
2013-07-09 00:21:08 +08:00
|
|
|
table {
|
|
|
|
width: auto;
|
|
|
|
}
|
2013-04-23 23:48:26 +08:00
|
|
|
margin-top: 12px;
|
|
|
|
padding-left: 5px;
|
|
|
|
.value {
|
2013-07-09 00:21:08 +08:00
|
|
|
text-align: left;
|
2013-04-23 23:48:26 +08:00
|
|
|
font-weight: bold;
|
2013-07-09 00:21:08 +08:00
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 30px;
|
2013-03-16 04:17:19 +08:00
|
|
|
}
|
|
|
|
}
|
2013-03-16 06:08:46 +08:00
|
|
|
|
|
|
|
&.trust-levels {
|
2014-03-06 14:14:51 +08:00
|
|
|
margin-bottom: 0;
|
2013-03-23 05:50:22 +08:00
|
|
|
table {
|
2014-03-06 14:14:51 +08:00
|
|
|
margin-bottom: 0;
|
2013-03-19 01:25:40 +08:00
|
|
|
}
|
2013-03-23 05:50:22 +08:00
|
|
|
td.value {
|
|
|
|
width: 45px;
|
|
|
|
}
|
2013-03-20 01:51:09 +08:00
|
|
|
}
|
2013-07-31 02:45:03 +08:00
|
|
|
|
|
|
|
.referred-topic-title {
|
2014-09-12 02:45:35 +08:00
|
|
|
width: 355px;
|
|
|
|
@include medium-width { width: 305px; }
|
|
|
|
@include small-width { width: 265px; }
|
2013-07-31 02:45:03 +08:00
|
|
|
}
|
2013-03-12 03:26:14 +08:00
|
|
|
}
|
|
|
|
|
2015-10-27 03:56:59 +08:00
|
|
|
.groups-bulk {
|
|
|
|
.control {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
}
|
2013-03-12 03:26:14 +08:00
|
|
|
|
|
|
|
.commits-widget {
|
2015-06-15 10:59:49 +08:00
|
|
|
border: solid 1px dark-light-diff($primary, $secondary, 90%, -60%);
|
2013-05-02 23:52:37 +08:00
|
|
|
height: 180px;
|
2013-05-02 06:12:02 +08:00
|
|
|
margin-bottom: 36px;
|
2013-03-12 03:26:14 +08:00
|
|
|
|
|
|
|
ul, li {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
a {
|
2014-05-07 11:53:04 +08:00
|
|
|
color: $primary;
|
2013-03-15 00:28:35 +08:00
|
|
|
text-decoration: none;
|
2013-03-12 03:26:14 +08:00
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
2014-05-07 11:53:04 +08:00
|
|
|
color: $primary;
|
2013-03-12 03:26:14 +08:00
|
|
|
font-weight: bold;
|
|
|
|
height: 30px;
|
2014-09-08 10:46:04 +08:00
|
|
|
background: dark-light-diff($primary, $secondary, 80%, -75%);
|
2013-03-12 03:26:14 +08:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
h1 {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1.286em;
|
2013-03-12 03:26:14 +08:00
|
|
|
margin: 5px 0 0 8px;
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 1.0em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header:hover h1 {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $tertiary;
|
2013-03-12 03:26:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.commits-list {
|
2013-05-02 23:52:37 +08:00
|
|
|
height: 149px;
|
2013-03-12 03:26:14 +08:00
|
|
|
overflow-y:auto;
|
|
|
|
|
|
|
|
li {
|
|
|
|
@extend .clearfix;
|
|
|
|
line-height: 1.0em;
|
|
|
|
padding: 6px 8px;
|
2015-06-15 10:59:49 +08:00
|
|
|
background-color: dark-light-diff($primary, $secondary, 90%, -60%);
|
2013-03-12 03:26:14 +08:00
|
|
|
.left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.right {
|
|
|
|
margin-left: 52px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
margin-top: 2px;
|
2015-06-15 10:59:49 +08:00
|
|
|
border: solid 1px dark-light-diff($primary, $secondary, 90%, -60%);
|
2013-03-12 03:26:14 +08:00
|
|
|
padding: 2px;
|
2014-05-06 13:50:51 +08:00
|
|
|
background-color: $secondary;
|
2013-03-12 03:26:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.commit-message {
|
2014-05-07 11:53:04 +08:00
|
|
|
color: $primary;
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 0.857em;
|
2013-03-12 03:26:14 +08:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.commit-meta {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary;
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 0.857em;
|
2013-03-12 03:26:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.committer-name {
|
|
|
|
font-weight: bold;
|
2014-05-07 11:53:04 +08:00
|
|
|
color: $primary;
|
2013-03-12 03:26:14 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
li:last-child {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
}
|
2013-03-15 00:28:35 +08:00
|
|
|
|
|
|
|
// Always show the scrollbar:
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 6px;
|
|
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
2014-09-08 10:46:04 +08:00
|
|
|
background: dark-light-diff($primary, $secondary, 90%, -75%);
|
2013-03-15 00:28:35 +08:00
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
2015-06-15 10:59:49 +08:00
|
|
|
border-left: solid 1px dark-light-diff($primary, $secondary, 90%, -60%);
|
2013-03-15 00:28:35 +08:00
|
|
|
}
|
2013-04-05 00:59:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.content-editor {
|
|
|
|
min-height: 500px;
|
|
|
|
|
2013-04-09 23:28:28 +08:00
|
|
|
float: left;
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 54.0540%;
|
|
|
|
margin-left: 1.8018%;
|
2013-04-09 23:28:28 +08:00
|
|
|
|
2013-04-05 00:59:44 +08:00
|
|
|
p.description {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary;
|
2013-04-05 00:59:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea.plain {
|
|
|
|
width: 98%;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor-input {
|
2013-04-05 00:59:44 +08:00
|
|
|
width: 98%;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ace-wrapper {
|
|
|
|
position: relative;
|
|
|
|
height: 600px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.ace_editor {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2013-05-09 15:37:34 +08:00
|
|
|
|
2015-11-13 05:08:19 +08:00
|
|
|
.email-template {
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-09 15:37:34 +08:00
|
|
|
.row.groups {
|
|
|
|
input[type='text'] {
|
|
|
|
width: 500px;
|
|
|
|
}
|
|
|
|
input#group-users {
|
|
|
|
width: 600px;
|
|
|
|
}
|
|
|
|
}
|
2013-08-02 09:30:13 +08:00
|
|
|
|
2013-08-09 05:16:07 +08:00
|
|
|
// Logs
|
2013-08-02 09:30:13 +08:00
|
|
|
|
2013-10-23 04:30:30 +08:00
|
|
|
.admin-logs-table {
|
|
|
|
input.ember-text-field {
|
|
|
|
padding: 1px 4px;
|
|
|
|
}
|
2013-10-24 00:55:06 +08:00
|
|
|
.btn {
|
|
|
|
padding: 2px 8px;
|
2013-12-10 05:27:49 +08:00
|
|
|
.fa {
|
2013-10-24 00:55:06 +08:00
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
}
|
2013-10-23 04:30:30 +08:00
|
|
|
}
|
|
|
|
|
2013-10-22 02:49:51 +08:00
|
|
|
.screened-emails, .screened-urls, .screened-ip-addresses {
|
2013-11-05 05:24:32 +08:00
|
|
|
.email, .url, .domain {
|
2013-08-23 07:04:17 +08:00
|
|
|
width: 300px;
|
2013-08-09 05:16:07 +08:00
|
|
|
}
|
2013-10-23 04:30:30 +08:00
|
|
|
.action, .match_count, .last_match_at, .created_at {
|
|
|
|
text-align: center;
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 9.9099%;
|
2013-10-23 04:30:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-25 05:18:10 +08:00
|
|
|
.screened-ip-address-form {
|
|
|
|
margin-left: 6px;
|
|
|
|
.combobox {
|
|
|
|
width: 130px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-23 04:30:30 +08:00
|
|
|
.screened-emails, .screened-urls {
|
|
|
|
.ip_address {
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 9.9099%;
|
2013-08-02 09:30:13 +08:00
|
|
|
text-align: center;
|
|
|
|
}
|
2013-08-08 04:04:12 +08:00
|
|
|
}
|
2013-10-23 04:30:30 +08:00
|
|
|
.screened-ip-addresses {
|
|
|
|
.ip_address {
|
|
|
|
width: 150px;
|
|
|
|
text-align: left;
|
|
|
|
input {
|
|
|
|
width: 130px;
|
|
|
|
}
|
|
|
|
}
|
2013-10-24 00:55:06 +08:00
|
|
|
.col.actions {
|
2013-10-23 04:30:30 +08:00
|
|
|
width: 275px;
|
2013-10-24 00:55:06 +08:00
|
|
|
padding-top: 4px;
|
2013-10-23 04:30:30 +08:00
|
|
|
a {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-08 04:04:12 +08:00
|
|
|
|
|
|
|
.staff-actions {
|
2013-08-09 06:35:14 +08:00
|
|
|
width: 100%;
|
2015-08-02 06:00:39 +08:00
|
|
|
min-width: 990px;
|
2013-08-08 04:04:12 +08:00
|
|
|
.action {
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 10.810%;
|
2013-08-08 04:04:12 +08:00
|
|
|
}
|
2013-08-20 04:58:38 +08:00
|
|
|
.staff_user {
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 9.009%;
|
2013-08-09 06:35:14 +08:00
|
|
|
}
|
2013-08-20 04:58:38 +08:00
|
|
|
.subject {
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 18.018%;
|
2013-08-20 04:58:38 +08:00
|
|
|
}
|
2013-08-09 06:35:14 +08:00
|
|
|
.created_at {
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 4.5045%;
|
2013-08-09 06:35:14 +08:00
|
|
|
}
|
|
|
|
.context {
|
2014-07-10 07:56:35 +08:00
|
|
|
width: 18.018%;
|
2013-08-08 04:04:12 +08:00
|
|
|
}
|
|
|
|
.created_at {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.details {
|
2013-08-20 04:58:38 +08:00
|
|
|
width: 300px;
|
2013-08-08 04:04:12 +08:00
|
|
|
a {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2013-08-09 06:35:14 +08:00
|
|
|
&.value {
|
|
|
|
height: 70px;
|
|
|
|
}
|
2013-08-08 04:04:12 +08:00
|
|
|
}
|
|
|
|
}
|
2013-08-09 05:16:07 +08:00
|
|
|
|
2013-08-10 04:58:57 +08:00
|
|
|
.staff-action-logs-controls {
|
|
|
|
margin: 0 0 20px 6px;
|
|
|
|
a.filter {
|
|
|
|
display: inline-block;
|
2015-08-20 17:42:12 +08:00
|
|
|
background-color: dark-light-choose(scale-color($primary, $lightness: 75%), scale-color($secondary, $lightness: 25%));
|
2013-08-10 04:58:57 +08:00
|
|
|
padding: 3px 10px;
|
|
|
|
border-radius: 3px;
|
2014-03-03 14:16:30 +08:00
|
|
|
|
2014-05-07 11:53:04 +08:00
|
|
|
color: $primary;
|
2013-08-10 04:58:57 +08:00
|
|
|
&:hover {
|
2014-05-07 11:53:04 +08:00
|
|
|
color: $primary;
|
2015-06-15 10:59:49 +08:00
|
|
|
background-color: dark-light-diff($primary, $secondary, 90%, -60%);
|
2014-02-24 09:47:44 +08:00
|
|
|
|
|
|
|
|
2013-08-10 04:58:57 +08:00
|
|
|
}
|
|
|
|
.label {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
i {
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.staff-action-logs-instructions {
|
2013-11-01 00:17:06 +08:00
|
|
|
margin: 0 0 10px 10px;
|
2013-08-10 04:58:57 +08:00
|
|
|
}
|
|
|
|
|
2013-08-09 05:16:07 +08:00
|
|
|
// Ember.ListView
|
|
|
|
|
|
|
|
.ember-list-view {
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.ember-list-item-view {
|
|
|
|
position: absolute;
|
|
|
|
}
|
2013-08-09 06:35:14 +08:00
|
|
|
|
2015-07-15 20:54:28 +08:00
|
|
|
.staff-actions, .screened-emails, .screened-urls, .screened-ip-addresses, .permalinks {
|
2014-03-03 14:16:30 +08:00
|
|
|
|
2015-08-20 17:42:12 +08:00
|
|
|
border-bottom: dotted 1px dark-light-choose(scale-color($primary, $lightness: 75%), scale-color($secondary, $lightness: 25%));
|
2013-08-09 06:35:14 +08:00
|
|
|
|
|
|
|
.heading-container {
|
|
|
|
width: 100%;
|
2015-06-15 10:59:49 +08:00
|
|
|
background-color: dark-light-diff($primary, $secondary, 90%, -60%);
|
2013-08-09 06:35:14 +08:00
|
|
|
}
|
|
|
|
.col.heading {
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
.col {
|
|
|
|
display: inline-block;
|
|
|
|
padding-top: 6px;
|
|
|
|
vertical-align: top;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ember-list-item-view {
|
|
|
|
width: 100%;
|
2015-06-15 10:59:49 +08:00
|
|
|
border-top: solid 1px dark-light-diff($primary, $secondary, 90%, -60%);
|
2013-08-09 06:35:14 +08:00
|
|
|
}
|
|
|
|
}
|
2013-08-21 22:49:35 +08:00
|
|
|
|
|
|
|
.log-details-modal {
|
|
|
|
.modal-tab {
|
|
|
|
width: 95%;
|
|
|
|
}
|
2014-01-02 23:22:04 +08:00
|
|
|
}
|
2014-01-24 05:40:10 +08:00
|
|
|
|
2014-09-25 08:19:26 +08:00
|
|
|
.tl3-requirements {
|
2014-01-24 05:40:10 +08:00
|
|
|
.fa-check {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $success;
|
2014-01-24 05:40:10 +08:00
|
|
|
}
|
|
|
|
.fa-times {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $danger;
|
2014-01-24 05:40:10 +08:00
|
|
|
}
|
2014-02-13 12:36:10 +08:00
|
|
|
}
|
|
|
|
|
2015-07-03 00:45:17 +08:00
|
|
|
.admin-plugins .col-enabled {
|
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
|
2014-02-13 12:36:10 +08:00
|
|
|
// Backups
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
$rollback: #3D9970;
|
|
|
|
$rollback-dark: darken($rollback, 10%) !default;
|
|
|
|
$rollback-darker: darken($rollback, 20%) !default;
|
|
|
|
|
|
|
|
.btn-rollback {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $secondary;
|
2014-02-13 12:36:10 +08:00
|
|
|
background: $rollback;
|
|
|
|
&:hover {
|
|
|
|
background: $rollback-dark;
|
|
|
|
}
|
|
|
|
&:active {
|
|
|
|
@include linear-gradient($rollback-darker, $rollback-dark);
|
|
|
|
}
|
|
|
|
&[disabled] {
|
|
|
|
background: $rollback;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin-backups-logs {
|
|
|
|
max-height: 500px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
2014-02-22 08:41:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
button.ru {
|
|
|
|
position: relative;
|
|
|
|
min-width: 110px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ru-progress {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
background: rgba(0, 175, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-uploading:hover .ru-progress {
|
|
|
|
background: rgba(200, 0, 0, 0.3);
|
|
|
|
}
|
2014-03-19 07:36:02 +08:00
|
|
|
|
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2014-07-10 07:56:35 +08:00
|
|
|
|
2014-08-05 04:48:04 +08:00
|
|
|
.delete-flag-modal, .agree-flag-modal {
|
2014-07-29 01:17:37 +08:00
|
|
|
button {
|
|
|
|
display: block;
|
|
|
|
margin: 10px 0 10px 10px;
|
|
|
|
padding: 10px 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-21 00:48:56 +08:00
|
|
|
.start-backup-modal {
|
|
|
|
.btn {
|
|
|
|
margin: 10px 0 10px 5px;
|
|
|
|
}
|
|
|
|
.btn:first-of-type {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-25 00:21:22 +08:00
|
|
|
@media all
|
2014-07-10 07:56:35 +08:00
|
|
|
and (max-width : 850px) {
|
2016-01-11 19:40:59 +08:00
|
|
|
html:not(.mobile-view) .admin-content .nav-stacked {
|
2014-07-10 07:56:35 +08:00
|
|
|
.glyph {width: auto; position: relative;}
|
|
|
|
> li > a {padding: 13px}
|
|
|
|
}
|
|
|
|
}
|
2014-07-23 04:30:32 +08:00
|
|
|
|
2014-07-25 00:21:22 +08:00
|
|
|
@media all
|
2014-07-23 04:30:32 +08:00
|
|
|
and (min-width : 320px)
|
|
|
|
and (max-width : 500px) {
|
|
|
|
|
|
|
|
.full-width { margin: 0; }
|
|
|
|
.site-settings-nav { width: 100%; }
|
|
|
|
.site-settings-detail {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
.settings .setting {
|
|
|
|
.setting-label {
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.setting-value {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
label {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 0.929em;
|
2014-07-23 04:30:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-editor {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.ac-wrap {
|
|
|
|
width: 100% !important;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin-container {
|
|
|
|
h2 {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-left, .dashboard-right { width: 100%; }
|
|
|
|
.dashboard-stats { margin: 0; }
|
|
|
|
|
|
|
|
.badges {
|
|
|
|
.current-badge {margin: 70px 0 0 0;}
|
|
|
|
.current-badge-actions {padding: 0;}
|
|
|
|
}
|
|
|
|
|
|
|
|
.customize .content-list, .customize .current-style {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2014-07-27 16:22:01 +08:00
|
|
|
|
|
|
|
.badge-groupings {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 10px 3px;
|
|
|
|
li {
|
|
|
|
padding: 6px 0;
|
|
|
|
width: 600px;
|
|
|
|
border-bottom: 1px solid #dfdfdf;
|
|
|
|
}
|
|
|
|
.actions {
|
|
|
|
float: right;
|
2015-12-27 06:58:54 +08:00
|
|
|
.btn {
|
|
|
|
padding: 3px 6px;
|
2014-07-27 16:22:01 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-03 22:09:30 +08:00
|
|
|
|
|
|
|
tr.not-activated {
|
|
|
|
td, td a, td a:visited {
|
|
|
|
color: #bbb;
|
|
|
|
}
|
2014-09-03 22:41:13 +08:00
|
|
|
}
|
|
|
|
.details.not-activated {
|
|
|
|
.username .value, .email .value a, .email .value a:visited {
|
|
|
|
color: #bbb;
|
|
|
|
}
|
2014-09-08 10:46:04 +08:00
|
|
|
}
|
2014-09-25 23:32:08 +08:00
|
|
|
|
|
|
|
.user-fields {
|
|
|
|
h2 {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-field {
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 10px;
|
2015-06-15 10:59:49 +08:00
|
|
|
border-bottom: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
2014-09-25 23:32:08 +08:00
|
|
|
|
|
|
|
.form-display {
|
2014-09-27 02:48:34 +08:00
|
|
|
width: 25%;
|
2014-09-25 23:32:08 +08:00
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2015-07-28 02:22:12 +08:00
|
|
|
.form-element, .form-element-desc {
|
2014-09-25 23:32:08 +08:00
|
|
|
float: left;
|
2015-07-29 00:29:40 +08:00
|
|
|
min-height: 30px;
|
2015-07-28 02:22:12 +08:00
|
|
|
padding: 0.25em 0;
|
|
|
|
|
2015-07-29 00:29:40 +08:00
|
|
|
&.input-area {
|
|
|
|
width: 75%;
|
|
|
|
input[type=text] {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.label-area {
|
|
|
|
width: 25%;
|
|
|
|
label {
|
|
|
|
margin: 0.5em 1em 0 0;
|
|
|
|
text-align: right;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
2014-09-25 23:32:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearfix {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-29 11:53:02 +08:00
|
|
|
|
|
|
|
.preview {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2015-02-25 09:52:43 +08:00
|
|
|
|
|
|
|
table#user-badges {
|
|
|
|
.reason {
|
|
|
|
max-width: 200px;
|
|
|
|
}
|
|
|
|
}
|
2015-03-03 01:12:19 +08:00
|
|
|
|
2015-06-10 00:19:41 +08:00
|
|
|
.value-list {
|
|
|
|
.value {
|
2015-03-03 01:12:19 +08:00
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
padding: 3px;
|
|
|
|
margin-right: 10px;
|
|
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2015-07-29 03:58:49 +08:00
|
|
|
|
|
|
|
cursor: move;
|
2015-03-03 01:12:19 +08:00
|
|
|
}
|
|
|
|
|
2015-06-10 00:19:41 +08:00
|
|
|
.values {
|
2015-03-03 01:12:19 +08:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2015-07-29 03:58:49 +08:00
|
|
|
.placeholder {
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
padding: 3px;
|
|
|
|
margin-right: 10px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
2015-03-03 01:12:19 +08:00
|
|
|
input[type=text] {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
}
|
2015-07-15 20:54:28 +08:00
|
|
|
|
|
|
|
// Permalinks
|
|
|
|
|
|
|
|
.permalinks {
|
2015-07-20 20:10:22 +08:00
|
|
|
.url, .topic, .category, .external_url, .post {
|
2015-07-17 18:23:48 +08:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.url {
|
|
|
|
width: 200px;
|
|
|
|
}
|
2015-07-20 20:10:22 +08:00
|
|
|
.topic, .post, .external_url {
|
|
|
|
width: 180px;
|
2015-07-15 20:54:28 +08:00
|
|
|
}
|
2015-07-20 20:10:22 +08:00
|
|
|
.category {
|
|
|
|
width: 140px;
|
2015-07-17 18:23:48 +08:00
|
|
|
}
|
2015-07-20 20:10:22 +08:00
|
|
|
.action {
|
2015-07-15 20:54:28 +08:00
|
|
|
text-align: center;
|
2015-07-17 18:23:48 +08:00
|
|
|
width: 8%;
|
2015-07-15 20:54:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.permalink-title {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2015-08-02 06:00:39 +08:00
|
|
|
|
2015-08-21 01:43:12 +08:00
|
|
|
|
|
|
|
// embedding
|
|
|
|
|
|
|
|
.embeddable-hosts {
|
|
|
|
table {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
margin-bottom: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.embedding-secondary {
|
|
|
|
h3 {
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
|
|
|
margin-bottom: 2em;
|
|
|
|
|
|
|
|
.embed-setting {
|
|
|
|
input[type=text] {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
margin: 0.75em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.description {
|
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
|
|
|
margin-bottom: 1em;
|
|
|
|
max-width: 700px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-19 07:57:55 +08:00
|
|
|
// Emails
|
|
|
|
|
|
|
|
.email-list {
|
|
|
|
.filters input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.time {
|
|
|
|
width: 50px;
|
|
|
|
}
|
2016-04-15 08:38:02 +08:00
|
|
|
.reply-key {
|
|
|
|
display: block;
|
|
|
|
font-size: 12px;
|
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 40%), scale-color($secondary, $lightness: 40%));
|
|
|
|
}
|
2016-01-19 07:57:55 +08:00
|
|
|
.username div {
|
|
|
|
max-width: 180px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
.addresses p {
|
|
|
|
margin: 2px 0;
|
|
|
|
max-width: 200px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-11 05:00:27 +08:00
|
|
|
.incoming-emails {
|
|
|
|
.control-group {
|
|
|
|
margin: 8px 0;
|
|
|
|
}
|
|
|
|
.controls {
|
|
|
|
margin-left: 110px;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
margin: 5px 10px;
|
|
|
|
}
|
|
|
|
.error-description {
|
|
|
|
color: #919191;
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
hr {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
font-weight: bold;
|
|
|
|
float: left;
|
|
|
|
width: 100px;
|
|
|
|
text-align: right;
|
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
textarea {
|
|
|
|
width: 95%;
|
|
|
|
height: 150px;
|
2016-02-11 05:43:00 +08:00
|
|
|
font-family: monospace;
|
|
|
|
box-shadow: none;
|
2016-02-11 05:00:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-02 06:00:39 +08:00
|
|
|
// Mobile specific styles
|
2015-08-02 07:57:41 +08:00
|
|
|
// Mobile view text-inputs need some padding
|
2015-08-02 06:00:39 +08:00
|
|
|
.mobile-view .admin-contents {
|
|
|
|
input[type="text"] {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mobile-view .admin-controls {
|
|
|
|
padding: 10px 10px 9px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mobile-view .full-width {
|
|
|
|
margin: 0;
|
2015-08-19 02:13:40 +08:00
|
|
|
}
|
2015-08-21 04:30:34 +08:00
|
|
|
|
2016-03-05 01:03:47 +08:00
|
|
|
// Mobile specific style for Admin IP Lookup box
|
|
|
|
.mobile-view .admin-contents .ip-lookup .location-box {
|
|
|
|
width: 300px;
|
|
|
|
left: 20px;
|
|
|
|
}
|
|
|
|
|
2015-08-21 04:30:34 +08:00
|
|
|
.cboxcontainer {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 8px;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
|
|
|
|
* {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
border: 1px solid $tertiary;
|
|
|
|
}
|
|
|
|
&.primary {
|
|
|
|
background: $primary;
|
|
|
|
}
|
|
|
|
&.secondary {
|
|
|
|
background: $secondary;
|
|
|
|
}
|
|
|
|
}
|
2015-08-21 07:47:34 +08:00
|
|
|
.cbox0 { background: blend-primary-secondary(0%); }
|
|
|
|
.cbox10 { background: blend-primary-secondary(10%); }
|
|
|
|
.cbox20 { background: blend-primary-secondary(20%); }
|
|
|
|
.cbox30 { background: blend-primary-secondary(30%); }
|
|
|
|
.cbox40 { background: blend-primary-secondary(40%); }
|
|
|
|
.cbox50 { background: blend-primary-secondary(50%); }
|
|
|
|
.cbox60 { background: blend-primary-secondary(60%); }
|
|
|
|
.cbox70 { background: blend-primary-secondary(70%); }
|
|
|
|
.cbox80 { background: blend-primary-secondary(80%); }
|
|
|
|
.cbox90 { background: blend-primary-secondary(90%); }
|
|
|
|
.cbox100 { background: blend-primary-secondary(100%); }
|
|
|
|
.cbox5 { background: blend-primary-secondary(5%); }
|
|
|
|
.cbox7 { background: blend-primary-secondary(7%); }
|
|
|
|
.cbox15 { background: blend-primary-secondary(15%); }
|
|
|
|
.cbox17 { background: blend-primary-secondary(17%); }
|
|
|
|
.cbox25 { background: blend-primary-secondary(25%); }
|
|
|
|
.cbox95 { background: blend-primary-secondary(95%); }
|
|
|
|
.cbox85 { background: blend-primary-secondary(85%); }
|
|
|
|
.cbox75 { background: blend-primary-secondary(75%); }
|
2015-08-21 04:30:34 +08:00
|
|
|
|
|
|
|
.dbox0 { background: dark-light-diff($primary, $secondary, 0%, -0%); }
|
|
|
|
.dbox10 { background: dark-light-diff($primary, $secondary, 10%, -10%); }
|
|
|
|
.dbox20 { background: dark-light-diff($primary, $secondary, 20%, -20%); }
|
|
|
|
.dbox30 { background: dark-light-diff($primary, $secondary, 30%, -30%); }
|
|
|
|
.dbox40 { background: dark-light-diff($primary, $secondary, 40%, -40%); }
|
|
|
|
.dbox50 { background: dark-light-diff($primary, $secondary, 50%, -50%); }
|
|
|
|
.dbox60 { background: dark-light-diff($primary, $secondary, 60%, -60%); }
|
|
|
|
.dbox70 { background: dark-light-diff($primary, $secondary, 70%, -70%); }
|
|
|
|
.dbox80 { background: dark-light-diff($primary, $secondary, 80%, -80%); }
|
|
|
|
.dbox90 { background: dark-light-diff($primary, $secondary, 90%, -90%); }
|
|
|
|
.dbox100 { background: dark-light-diff($primary, $secondary, 100%, -100%); }
|
|
|
|
.dbox5 { background: dark-light-diff($primary, $secondary, 5%, -5%); }
|
|
|
|
.dbox15 { background: dark-light-diff($primary, $secondary, 15%, -15%); }
|
|
|
|
.dbox25 { background: dark-light-diff($primary, $secondary, 25%, -25%); }
|
|
|
|
.dbox95 { background: dark-light-diff($primary, $secondary, 95%, -95%); }
|
|
|
|
.dbox85 { background: dark-light-diff($primary, $secondary, 85%, -85%); }
|
|
|
|
.dbox75 { background: dark-light-diff($primary, $secondary, 75%, -75%); }
|