2016-12-13 07:42:10 -05:00
|
|
|
.admin-wrapper {
|
2017-01-27 21:56:10 -05:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2016-12-13 07:42:10 -05:00
|
|
|
height: 100%;
|
2017-01-27 21:56:10 -05:00
|
|
|
|
|
|
|
.sidebar-wrapper {
|
|
|
|
flex: 1;
|
|
|
|
height: 100%;
|
2017-05-08 09:57:49 -04:00
|
|
|
background: $ui-base-color;
|
2017-01-27 21:56:10 -05:00
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
2016-12-13 07:42:10 -05:00
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
width: 240px;
|
|
|
|
height: 100%;
|
2017-04-19 08:30:23 -04:00
|
|
|
padding: 0;
|
|
|
|
overflow-y: auto;
|
2017-05-07 14:47:31 -04:00
|
|
|
|
2016-12-13 07:42:10 -05:00
|
|
|
.logo {
|
|
|
|
display: block;
|
|
|
|
margin: 40px auto;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
2017-01-27 21:56:10 -05:00
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
overflow: hidden;
|
2017-04-19 08:30:23 -04:00
|
|
|
margin-bottom: 20px;
|
2016-12-13 07:42:10 -05:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
padding: 15px 25px;
|
2017-05-08 09:57:49 -04:00
|
|
|
color: rgba($primary-text-color, 0.7);
|
2016-12-13 07:42:10 -05:00
|
|
|
text-decoration: none;
|
|
|
|
transition: all 200ms linear;
|
2017-01-27 21:56:10 -05:00
|
|
|
border-radius: 4px 0 0 4px;
|
2016-12-13 07:42:10 -05:00
|
|
|
|
|
|
|
i.fa {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
|
|
|
background-color: darken($ui-base-color, 5%);
|
2016-12-13 07:42:10 -05:00
|
|
|
transition: all 100ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: darken($ui-base-color, 2%);
|
2017-05-07 14:47:31 -04:00
|
|
|
border-radius: 4px 0 0;
|
2017-01-27 21:56:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
2017-05-08 09:57:49 -04:00
|
|
|
background: darken($ui-base-color, 4%);
|
2017-01-27 21:56:10 -05:00
|
|
|
border-radius: 0 0 0 4px;
|
2017-04-19 08:30:23 -04:00
|
|
|
margin: 0;
|
2017-01-27 21:56:10 -05:00
|
|
|
|
|
|
|
a {
|
|
|
|
border: 0;
|
2016-12-13 07:42:10 -05:00
|
|
|
|
2017-01-27 21:56:10 -05:00
|
|
|
&.selected {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
|
|
|
background-color: $ui-highlight-color;
|
2017-01-27 21:56:10 -05:00
|
|
|
border-bottom: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 09:57:49 -04:00
|
|
|
background-color: lighten($ui-highlight-color, 5%);
|
2017-01-27 21:56:10 -05:00
|
|
|
}
|
2016-12-13 07:42:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-27 21:56:10 -05:00
|
|
|
.content-wrapper {
|
|
|
|
flex: 2;
|
2017-02-14 18:22:58 -05:00
|
|
|
overflow: auto;
|
2017-01-27 21:56:10 -05:00
|
|
|
}
|
|
|
|
|
2016-12-13 07:42:10 -05:00
|
|
|
.content {
|
2017-01-27 21:56:10 -05:00
|
|
|
max-width: 700px;
|
|
|
|
padding: 20px 15px;
|
|
|
|
padding-top: 60px;
|
|
|
|
padding-left: 25px;
|
|
|
|
|
|
|
|
h2 {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $ui-secondary-color;
|
2017-01-27 21:56:10 -05:00
|
|
|
font-size: 24px;
|
|
|
|
line-height: 28px;
|
|
|
|
font-weight: 400;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
2017-06-14 12:01:27 -04:00
|
|
|
h6 {
|
|
|
|
font-size: 16px;
|
|
|
|
color: $ui-primary-color;
|
|
|
|
line-height: 28px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2017-02-16 18:42:52 -05:00
|
|
|
& > p {
|
2017-01-27 21:56:10 -05:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $ui-secondary-color;
|
2017-01-27 21:56:10 -05:00
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
strong {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
2017-01-27 21:56:10 -05:00
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
2017-02-16 18:42:52 -05:00
|
|
|
|
|
|
|
hr {
|
|
|
|
margin: 20px 0;
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
2017-05-08 09:57:49 -04:00
|
|
|
border-bottom: 1px solid $ui-base-color;
|
2017-02-16 18:42:52 -05:00
|
|
|
}
|
2017-06-14 12:01:27 -04:00
|
|
|
|
|
|
|
.muted-hint {
|
|
|
|
color: lighten($ui-base-color, 27%);
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $ui-primary-color;
|
|
|
|
}
|
|
|
|
}
|
2017-06-25 17:51:46 -04:00
|
|
|
|
|
|
|
.positive-hint {
|
|
|
|
color: $valid-value-color;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2017-01-27 21:56:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.simple_form {
|
|
|
|
max-width: 400px;
|
2017-05-07 14:47:31 -04:00
|
|
|
|
2017-04-18 11:25:44 -04:00
|
|
|
.label_input {
|
|
|
|
label.select {
|
|
|
|
width: 50%;
|
|
|
|
}
|
2017-05-07 14:47:31 -04:00
|
|
|
|
2017-04-18 11:25:44 -04:00
|
|
|
select {
|
|
|
|
width: 50%;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
2016-12-13 07:42:10 -05:00
|
|
|
}
|
2017-01-28 15:57:03 -05:00
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
display: block;
|
|
|
|
overflow-y: auto;
|
2017-04-17 04:37:00 -04:00
|
|
|
-webkit-overflow-scrolling: touch;
|
2017-01-28 15:57:03 -05:00
|
|
|
|
2017-05-07 14:47:31 -04:00
|
|
|
.sidebar-wrapper,
|
|
|
|
.content-wrapper {
|
2017-01-28 15:57:03 -05:00
|
|
|
flex: 0 0 auto;
|
|
|
|
height: auto;
|
2017-04-17 04:37:00 -04:00
|
|
|
overflow: initial;
|
2017-01-28 15:57:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px 0;
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
margin: 20px auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
}
|
2016-12-13 07:42:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.filters {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
.filter-subset {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
margin-right: 40px;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin-top: 5px;
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
2017-05-08 09:57:49 -04:00
|
|
|
color: rgba($primary-text-color, 0.7);
|
2016-12-13 07:42:10 -05:00
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 500;
|
2017-05-08 09:57:49 -04:00
|
|
|
border-bottom: 2px solid $ui-base-color;
|
2016-12-13 07:42:10 -05:00
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $primary-text-color;
|
|
|
|
border-bottom: 2px solid lighten($ui-base-color, 5%);
|
2016-12-13 07:42:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $ui-highlight-color;
|
|
|
|
border-bottom: 2px solid $ui-highlight-color;
|
2016-12-13 07:42:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-16 18:42:52 -05:00
|
|
|
|
|
|
|
.report-accounts {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-accounts__item {
|
|
|
|
flex: 1 1 0;
|
2017-02-16 20:05:15 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-02-16 18:42:52 -05:00
|
|
|
|
|
|
|
& > strong {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
2017-05-08 09:57:49 -04:00
|
|
|
color: $ui-secondary-color;
|
2017-02-16 18:42:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2017-02-16 20:05:15 -05:00
|
|
|
|
|
|
|
.account-card {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2017-02-16 18:42:52 -05:00
|
|
|
}
|
|
|
|
|
2017-07-18 10:38:22 -04:00
|
|
|
.report-status,
|
|
|
|
.account-status {
|
2017-02-16 18:42:52 -05:00
|
|
|
display: flex;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
.activity-stream {
|
2017-02-16 20:05:15 -05:00
|
|
|
flex: 2 0 0;
|
2017-02-16 18:42:52 -05:00
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-18 10:38:22 -04:00
|
|
|
.report-status__actions,
|
|
|
|
.account-status__actions {
|
2017-02-16 18:42:52 -05:00
|
|
|
flex: 0 0 auto;
|
2017-06-08 08:58:22 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-05-23 13:45:43 -04:00
|
|
|
|
2017-06-08 08:58:22 -04:00
|
|
|
.icon-button {
|
2017-05-23 13:45:43 -04:00
|
|
|
font-size: 24px;
|
|
|
|
width: 24px;
|
2017-06-08 08:58:22 -04:00
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 10px;
|
2017-05-23 13:45:43 -04:00
|
|
|
}
|
2017-02-16 18:42:52 -05:00
|
|
|
}
|
2017-07-18 10:38:22 -04:00
|
|
|
|
|
|
|
.batch-form-box {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
#form_status_batch_action {
|
|
|
|
margin-right: 5px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-spoiler-toggle-buttons {
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
|
|
.button {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.batch-checkbox,
|
|
|
|
.batch-checkbox-all {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.back-link {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $classic-highlight-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|