Removing unneeded and duplicate styles
This commit is contained in:
parent
82e68670bf
commit
b731d5d9b5
|
@ -37,20 +37,9 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.me {
|
|
||||||
td {
|
|
||||||
background-color: dark-light-choose($highlight-low, $highlight-medium);
|
|
||||||
|
|
||||||
.username a, .name, .title, .number, .time-read {
|
|
||||||
color: $primary-medium;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
th.sortable {
|
th.sortable {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
width: 13%;
|
width: 13%;
|
||||||
.d-icon-heart {
|
.d-icon-heart {
|
||||||
color: $love;
|
color: $love;
|
||||||
|
@ -65,4 +54,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.me {
|
||||||
|
background-color: dark-light-choose($highlight-low, $highlight-medium);
|
||||||
|
.username a, .name, .title, .number, .time-read {
|
||||||
|
color: $primary-medium;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,9 +50,6 @@
|
||||||
margin-left: 7px;
|
margin-left: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.d-header-icons {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-dropdown-toggle, .drop-down, .panel-body {
|
.header-dropdown-toggle, .drop-down, .panel-body {
|
||||||
|
|
|
@ -24,6 +24,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#revision-details {
|
||||||
|
padding: 5px;
|
||||||
|
margin-top: 10px;
|
||||||
|
border-bottom: 3px solid $primary-low;
|
||||||
|
}
|
||||||
|
|
||||||
#revisions .row:first-of-type {
|
#revisions .row:first-of-type {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,18 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#login-form {
|
||||||
|
a {
|
||||||
|
color: dark-light-choose($primary-high, $secondary-low);
|
||||||
|
}
|
||||||
|
td {
|
||||||
|
padding-right: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#new-account-link {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
$label-width: 92px;
|
$label-width: 92px;
|
||||||
$input-width: 220px;
|
$input-width: 220px;
|
||||||
|
|
|
@ -111,6 +111,7 @@
|
||||||
z-index: z("modal","content");
|
z-index: z("modal","content");
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-form {
|
.modal-form {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
@ -156,6 +157,8 @@
|
||||||
.modal-body {
|
.modal-body {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
overflow-y: auto;
|
||||||
|
max-height: 400px;
|
||||||
&.full-height-modal {
|
&.full-height-modal {
|
||||||
max-height: calc(100vh - 150px);
|
max-height: calc(100vh - 150px);
|
||||||
}
|
}
|
||||||
|
@ -413,7 +416,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.change-timestamp {
|
.change-timestamp {
|
||||||
|
|
||||||
.date-picker {
|
.date-picker {
|
||||||
|
@ -434,5 +436,55 @@
|
||||||
form {
|
form {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.flag-modal {
|
||||||
|
max-height: 450px;
|
||||||
|
.flag-action-type-details {
|
||||||
|
line-height: $line-height-large;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.flag-message {
|
||||||
|
width: 95% !important;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-message-length {
|
||||||
|
color: dark-light-choose($primary-low-mid, $secondary-high);
|
||||||
|
font-size: $font-down-1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.edit-category-modal {
|
||||||
|
.secure-category-options {
|
||||||
|
margin: 10px 0 0 16px;
|
||||||
|
.badge-list {
|
||||||
|
margin: 10px 0;
|
||||||
|
li {
|
||||||
|
margin: 0 4px 8px 0;
|
||||||
|
a {
|
||||||
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabbed-modal {
|
||||||
|
.modal-body {
|
||||||
|
position: relative;
|
||||||
|
height: 350px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.modal-tab {
|
||||||
|
position: absolute;
|
||||||
|
width: 95%;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
@import "desktop/user";
|
@import "desktop/user";
|
||||||
@import "desktop/history";
|
@import "desktop/history";
|
||||||
@import "desktop/queued-posts";
|
@import "desktop/queued-posts";
|
||||||
@import "desktop/menu-panel";
|
|
||||||
@import "desktop/group";
|
@import "desktop/group";
|
||||||
|
|
||||||
// Import all component-specific files
|
// Import all component-specific files
|
||||||
|
|
|
@ -7,9 +7,6 @@
|
||||||
max-width: 960px;
|
max-width: 960px;
|
||||||
}
|
}
|
||||||
#revision-controls {
|
#revision-controls {
|
||||||
float: left;
|
|
||||||
padding-right: 5px;
|
|
||||||
|
|
||||||
.btn[disabled] {
|
.btn[disabled] {
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
background-color: $primary-low;
|
background-color: $primary-low;
|
||||||
|
@ -32,11 +29,7 @@
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#revision-details {
|
|
||||||
padding: 5px;
|
|
||||||
margin-top: 10px;
|
|
||||||
border-bottom: 3px solid $primary-low;
|
|
||||||
}
|
|
||||||
#revisions {
|
#revisions {
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
table {
|
table {
|
||||||
|
|
|
@ -12,21 +12,8 @@
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#login-form {
|
|
||||||
a {
|
|
||||||
color: dark-light-choose($primary-high, $secondary-low);
|
|
||||||
}
|
|
||||||
td {
|
|
||||||
padding-right: 5px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create account
|
// Create account
|
||||||
|
|
||||||
#new-account-link {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.create-account {
|
.create-account {
|
||||||
form {
|
form {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
.docked #hamburger-menu {
|
|
||||||
position: fixed;
|
|
||||||
}
|
|
||||||
|
|
||||||
#hamburger-menu {
|
|
||||||
position: absolute;
|
|
||||||
top: 63px;
|
|
||||||
// compensate on the other end for this top
|
|
||||||
.hamburger-body {
|
|
||||||
bottom: 100px;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -22,8 +22,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-body {
|
.modal-body {
|
||||||
overflow-y: auto;
|
|
||||||
max-height: 400px;
|
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -69,23 +67,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.flag-modal {
|
|
||||||
max-height: 450px;
|
|
||||||
.flag-action-type-details {
|
|
||||||
line-height: $line-height-large;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.custom-message-length {
|
|
||||||
color: dark-light-choose($primary-low-mid, $secondary-high);
|
|
||||||
font-size: $font-down-1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.flag-message {
|
|
||||||
width: 95%;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.edit-category-modal {
|
.edit-category-modal {
|
||||||
.modal-body {
|
.modal-body {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -93,22 +74,6 @@
|
||||||
max-height: 420px;
|
max-height: 420px;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
.secure-category-options {
|
|
||||||
margin: 10px 0 0 16px;
|
|
||||||
.badge-list {
|
|
||||||
margin: 10px 0;
|
|
||||||
li {
|
|
||||||
margin: 0 4px 8px 0;
|
|
||||||
a {
|
|
||||||
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.disable_info_wrap {
|
.disable_info_wrap {
|
||||||
margin-top: -70px;
|
margin-top: -70px;
|
||||||
|
@ -147,18 +112,6 @@
|
||||||
max-width: 23%;
|
max-width: 23%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
.tabbed-modal {
|
|
||||||
.modal-body {
|
|
||||||
position: relative;
|
|
||||||
height: 350px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-tab {
|
|
||||||
position: absolute;
|
|
||||||
width: 95%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.split-modal {
|
.split-modal {
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
@import "mobile/user";
|
@import "mobile/user";
|
||||||
@import "mobile/history";
|
@import "mobile/history";
|
||||||
@import "mobile/directory";
|
@import "mobile/directory";
|
||||||
@import "mobile/menu-panel";
|
|
||||||
@import "mobile/search";
|
@import "mobile/search";
|
||||||
@import "mobile/emoji";
|
@import "mobile/emoji";
|
||||||
@import "mobile/ring";
|
@import "mobile/ring";
|
||||||
|
|
|
@ -1,36 +1,18 @@
|
||||||
.user-controls {
|
|
||||||
padding: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.total-rows {
|
|
||||||
padding: 0.25em 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.directory .user {
|
.directory .user {
|
||||||
border-top: 1px solid $primary-low;
|
border-top: 1px solid $primary-low;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
|
|
||||||
|
|
||||||
&.me {
|
|
||||||
background-color: dark-light-choose($highlight-low, $highlight-medium);
|
|
||||||
|
|
||||||
.username a, .name, .title, .number, .time-read, .user-stat .label {
|
|
||||||
color: scale-color($highlight, $lightness: -50%);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.user-stat {
|
.user-stat {
|
||||||
margin-left: 55px;
|
margin-left: 55px;
|
||||||
|
|
||||||
.value {
|
.value {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.label {
|
.label {
|
||||||
margin-left: 0.2em;
|
margin-left: 0.2em;
|
||||||
color: blend-primary-secondary(50%);
|
color: $primary-medium;
|
||||||
}
|
}
|
||||||
.d-icon-heart {
|
.d-icon-heart {
|
||||||
color: $love;
|
color: $love;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
.emoji-picker {
|
.emoji-picker {
|
||||||
box-shadow: none;
|
|
||||||
height: 250px;
|
height: 250px;
|
||||||
border-radius: 0;
|
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
|
|
||||||
.body-page {
|
.body-page {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
margin-left: 15px;
|
width: 100%;
|
||||||
width: 90%;
|
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
|
@ -8,11 +8,6 @@
|
||||||
#revision-numbers {
|
#revision-numbers {
|
||||||
line-height: $line-height-large;
|
line-height: $line-height-large;
|
||||||
}
|
}
|
||||||
#revision-details {
|
|
||||||
background-color: $primary-low;
|
|
||||||
padding: 5px;
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
img {
|
img {
|
||||||
max-width: 95%;
|
max-width: 95%;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
|
@ -15,9 +15,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#login-form {
|
#login-form {
|
||||||
a {
|
|
||||||
color: dark-light-choose($primary-high, $secondary-low);
|
|
||||||
}
|
|
||||||
label { float: left; display: block; }
|
label { float: left; display: block; }
|
||||||
textarea, input, select {
|
textarea, input, select {
|
||||||
font-size: $font-up-1;
|
font-size: $font-up-1;
|
||||||
|
@ -31,12 +29,6 @@ a#new-account-link { white-space:nowrap; }
|
||||||
|
|
||||||
// Create account
|
// Create account
|
||||||
|
|
||||||
#new-account-link {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
a#forgot-password-link {clear: left; float: left; }
|
|
||||||
|
|
||||||
.login-modal, .create-account {
|
.login-modal, .create-account {
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
.menu-panel {
|
|
||||||
span.badge-category {
|
|
||||||
max-width: 85px;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -22,8 +22,6 @@
|
||||||
top: 50%;
|
top: 50%;
|
||||||
}
|
}
|
||||||
.modal-body {
|
.modal-body {
|
||||||
overflow-y: auto;
|
|
||||||
max-height: 400px;
|
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -70,27 +68,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.flag-modal {
|
|
||||||
max-height: 450px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-device-width: 568px) {
|
@media only screen and (max-device-width: 568px) {
|
||||||
.modal .flag-modal .flag-message {
|
.modal .flag-modal .flag-message {
|
||||||
height: 1.2em;
|
height: 3em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.custom-message-length {
|
|
||||||
margin: -4px 0 10px 20px;
|
|
||||||
color: dark-light-choose($primary-high, $secondary-low);
|
|
||||||
font-size: $font-down-1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.flag-message {
|
|
||||||
margin-left: 20px;
|
|
||||||
width: 95% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.edit-category-modal {
|
.edit-category-modal {
|
||||||
.modal-body {
|
.modal-body {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -100,19 +83,6 @@
|
||||||
&.small .modal-body {
|
&.small .modal-body {
|
||||||
height: 310px;
|
height: 310px;
|
||||||
}
|
}
|
||||||
.secure-category-options {
|
|
||||||
margin: 10px 0 0 16px;
|
|
||||||
.badge-list {
|
|
||||||
margin: 10px 0;
|
|
||||||
li {
|
|
||||||
margin: 0 4px 8px 0;
|
|
||||||
a {
|
|
||||||
color: #888;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.disable_info_wrap .cannot_delete_reason {
|
.disable_info_wrap .cannot_delete_reason {
|
||||||
top: -114px;
|
top: -114px;
|
||||||
|
@ -121,18 +91,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabbed-modal {
|
|
||||||
.modal-body {
|
|
||||||
position: relative;
|
|
||||||
height: 350px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.modal-tab {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* fixes for the new account confirm dialog on mobile */
|
/* fixes for the new account confirm dialog on mobile */
|
||||||
|
|
||||||
.modal-inner-container {
|
.modal-inner-container {
|
||||||
|
|
Loading…
Reference in New Issue