2017-08-24 21:04:19 -04:00
|
|
|
// Common styles for "/user" section
|
2018-05-03 15:13:59 -04:00
|
|
|
// These styles are also used for "/groups" — test those pages if making significant changes
|
2019-03-25 14:38:38 -04:00
|
|
|
|
|
|
|
.user-content-wrapper {
|
|
|
|
// Grid layout
|
2019-03-29 15:34:31 -04:00
|
|
|
width: 100%;
|
2019-03-25 14:38:38 -04:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 5fr;
|
|
|
|
grid-template-rows: auto auto 1fr auto;
|
|
|
|
grid-row-gap: s(5);
|
|
|
|
.user-primary-navigation {
|
2019-03-25 16:41:03 -04:00
|
|
|
grid-column-start: 1;
|
|
|
|
grid-column-end: 3;
|
2019-03-25 14:38:38 -04:00
|
|
|
grid-row-start: 1;
|
|
|
|
grid-row-end: 2;
|
|
|
|
}
|
|
|
|
.user-secondary-navigation {
|
|
|
|
grid-column-start: 1;
|
2019-03-25 16:41:03 -04:00
|
|
|
grid-column-end: 2;
|
2019-03-25 14:38:38 -04:00
|
|
|
grid-row-start: 2;
|
|
|
|
grid-row-end: 3;
|
|
|
|
}
|
2019-04-05 10:59:52 -04:00
|
|
|
.solo-preference,
|
2019-03-25 14:38:38 -04:00
|
|
|
.user-content,
|
|
|
|
.spinner {
|
|
|
|
grid-row-start: 2;
|
|
|
|
grid-row-end: 4;
|
2019-03-25 16:41:03 -04:00
|
|
|
grid-column-start: 1;
|
|
|
|
grid-column-end: 3;
|
2019-03-25 14:38:38 -04:00
|
|
|
}
|
|
|
|
.user-content {
|
|
|
|
min-width: 100%;
|
|
|
|
}
|
2019-03-25 16:41:03 -04:00
|
|
|
.user-additional-controls + .user-content,
|
2019-03-25 14:38:38 -04:00
|
|
|
.user-secondary-navigation + .user-content {
|
|
|
|
grid-column-start: 2;
|
2019-03-25 16:41:03 -04:00
|
|
|
grid-column-end: 3;
|
2019-03-25 14:38:38 -04:00
|
|
|
}
|
|
|
|
.user-additional-controls {
|
|
|
|
grid-row-start: 3;
|
|
|
|
align-self: start;
|
|
|
|
justify-self: start;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-25 14:47:56 -04:00
|
|
|
.user-content-wrapper {
|
|
|
|
// IE11 Support
|
2019-03-25 14:38:38 -04:00
|
|
|
display: -ms-grid;
|
|
|
|
-ms-grid-columns: 1fr 5fr;
|
|
|
|
-ms-grid-rows: auto auto 1fr auto;
|
|
|
|
.user-primary-navigation {
|
2019-03-25 14:47:56 -04:00
|
|
|
-ms-grid-row: 1;
|
2019-03-25 14:38:38 -04:00
|
|
|
-ms-grid-column: 1;
|
|
|
|
-ms-grid-column-span: 2;
|
|
|
|
}
|
|
|
|
.user-secondary-navigation {
|
2019-03-26 10:13:09 -04:00
|
|
|
-ms-grid-row: 2;
|
|
|
|
-ms-grid-column: 1;
|
2019-03-25 14:38:38 -04:00
|
|
|
}
|
2019-04-05 10:59:52 -04:00
|
|
|
.solo-preference,
|
2019-03-25 14:38:38 -04:00
|
|
|
.user-content,
|
2019-03-25 14:47:56 -04:00
|
|
|
.spinner {
|
2019-03-25 14:38:38 -04:00
|
|
|
-ms-grid-row: 2;
|
2019-07-05 12:05:58 -04:00
|
|
|
-ms-grid-column: 2;
|
2019-03-25 14:38:38 -04:00
|
|
|
-ms-grid-column-span: 2;
|
|
|
|
}
|
|
|
|
.user-secondary-navigation + .user-content {
|
|
|
|
-ms-grid-column: 2;
|
|
|
|
-ms-grid-column-span: 1;
|
|
|
|
}
|
|
|
|
.user-additional-controls {
|
|
|
|
-ms-grid-row: 3;
|
|
|
|
-ms-grid-column-align: start;
|
|
|
|
-ms-grid-row-align: start;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-content {
|
2017-09-01 07:29:50 -04:00
|
|
|
.list-actions {
|
2019-01-17 17:29:27 -05:00
|
|
|
display: flex;
|
2019-03-25 14:38:38 -04:00
|
|
|
margin-bottom: s(3);
|
2017-09-01 07:29:50 -04:00
|
|
|
|
|
|
|
.btn {
|
2019-03-25 14:38:38 -04:00
|
|
|
margin-right: s(3);
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
}
|
2018-03-06 14:38:43 +08:00
|
|
|
|
|
|
|
.paginated-topics-list {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.show-mores {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2019-03-25 14:38:38 -04:00
|
|
|
|
|
|
|
.d-icon-heart {
|
|
|
|
color: $love;
|
|
|
|
}
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
|
2015-07-22 19:19:15 +08:00
|
|
|
.user-main {
|
2017-09-01 07:29:50 -04:00
|
|
|
.about {
|
|
|
|
width: 100%;
|
2018-05-01 20:41:28 -04:00
|
|
|
margin-bottom: 15px;
|
2017-09-01 07:29:50 -04:00
|
|
|
|
2019-04-01 22:04:11 -04:00
|
|
|
&.has-background {
|
|
|
|
.user-profile-image {
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
2019-04-01 23:50:47 -04:00
|
|
|
.staff-counters {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2019-04-01 22:04:11 -04:00
|
|
|
}
|
|
|
|
|
2017-09-01 07:29:50 -04:00
|
|
|
.secondary {
|
2019-03-29 12:52:26 -04:00
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
2018-04-09 14:02:43 -04:00
|
|
|
border-top: 1px solid $primary-low;
|
2017-09-01 07:29:50 -04:00
|
|
|
|
|
|
|
.btn {
|
2018-04-09 14:02:43 -04:00
|
|
|
padding: 4px 12px;
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dl {
|
|
|
|
margin: 0;
|
2018-04-09 14:02:43 -04:00
|
|
|
padding: 5px 10px;
|
|
|
|
div {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: baseline;
|
|
|
|
margin-right: 15px;
|
2018-04-20 17:44:17 +02:00
|
|
|
margin: 4px 0;
|
2018-04-09 14:02:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-08 11:49:31 +02:00
|
|
|
dt,
|
|
|
|
dd {
|
2018-04-09 14:02:43 -04:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dd {
|
|
|
|
padding: 0;
|
2018-04-09 14:02:43 -04:00
|
|
|
margin: 0 15px 0 0;
|
2017-09-01 07:29:50 -04:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
color: $primary;
|
|
|
|
|
|
|
|
&.groups {
|
2019-01-23 10:10:17 -05:00
|
|
|
span:not(:last-of-type) {
|
|
|
|
margin-right: 0.25em;
|
|
|
|
}
|
2017-09-01 07:29:50 -04:00
|
|
|
span:after {
|
2018-06-08 11:49:31 +02:00
|
|
|
content: ",";
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
span:last-of-type:after {
|
2018-06-08 11:49:31 +02:00
|
|
|
content: "";
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dt {
|
|
|
|
color: $secondary-medium;
|
2018-04-20 17:44:17 +02:00
|
|
|
margin-right: 5px;
|
2017-09-01 07:29:50 -04:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.details {
|
2018-06-08 11:49:31 +02:00
|
|
|
background: rgba($secondary, 0.8);
|
2019-03-29 12:52:26 -04:00
|
|
|
border-bottom: 1px solid $primary-low;
|
2017-09-01 07:29:50 -04:00
|
|
|
|
|
|
|
h1 {
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-up-5;
|
2017-09-01 07:29:50 -04:00
|
|
|
font-weight: normal;
|
2018-11-26 16:49:57 -05:00
|
|
|
.d-icon {
|
2018-06-08 11:49:31 +02:00
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-weight: normal;
|
|
|
|
max-width: 100%;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-weight: normal;
|
2019-01-08 13:07:29 -05:00
|
|
|
margin-bottom: 0.5em;
|
2017-09-01 08:32:27 -04:00
|
|
|
.d-icon:not(:first-of-type) {
|
2017-09-01 07:29:50 -04:00
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.groups {
|
|
|
|
margin-left: 10px;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.avatar {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.suspended {
|
|
|
|
color: $danger;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary {
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bio {
|
|
|
|
max-height: 300px;
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
a[href] {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-13 17:13:32 -05:00
|
|
|
|
|
|
|
.user-profile-avatar {
|
|
|
|
position: relative;
|
|
|
|
float: left;
|
|
|
|
.avatar-flair {
|
|
|
|
bottom: 8px;
|
|
|
|
right: 16px;
|
|
|
|
}
|
|
|
|
}
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
ul {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2018-12-18 20:36:42 -05:00
|
|
|
.btn {
|
2017-09-01 07:29:50 -04:00
|
|
|
margin-bottom: 10px;
|
2018-12-07 12:34:37 -05:00
|
|
|
line-height: $line-height-medium;
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.collapsed-info {
|
|
|
|
.details {
|
|
|
|
margin-top: 0;
|
2018-06-08 11:49:31 +02:00
|
|
|
background: rgba($secondary, 0.8);
|
2017-09-01 07:29:50 -04:00
|
|
|
|
|
|
|
.bio {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
margin-right: 10px;
|
|
|
|
width: 45px;
|
|
|
|
height: 45px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-up-3;
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-up-1;
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
2019-03-20 14:56:34 -04:00
|
|
|
h3,
|
|
|
|
h3.location-and-website {
|
2017-09-01 07:29:50 -04:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-13 17:13:32 -05:00
|
|
|
|
|
|
|
.user-profile-avatar {
|
|
|
|
.avatar-flair {
|
|
|
|
bottom: 8px;
|
|
|
|
right: 2px;
|
2019-03-25 14:38:38 -04:00
|
|
|
.d-icon {
|
2018-08-31 10:38:39 -04:00
|
|
|
font-size: $font-0;
|
|
|
|
}
|
2018-02-13 17:13:32 -05:00
|
|
|
}
|
|
|
|
}
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.staff-counters {
|
|
|
|
background: $primary;
|
2018-02-26 11:42:57 +01:00
|
|
|
color: $secondary;
|
2017-12-12 10:40:16 -05:00
|
|
|
display: flex;
|
2018-02-26 11:42:57 +01:00
|
|
|
padding: 10px;
|
2019-04-01 23:50:47 -04:00
|
|
|
margin-bottom: s(4);
|
2018-06-08 11:49:31 +02:00
|
|
|
> div,
|
|
|
|
> div a {
|
2017-12-12 10:40:16 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
|
|
|
flex: 0 1 auto;
|
2017-09-01 07:29:50 -04:00
|
|
|
margin: 0 10px 0 0;
|
2019-03-25 14:38:38 -04:00
|
|
|
color: $secondary;
|
|
|
|
|
2017-09-01 07:29:50 -04:00
|
|
|
span {
|
2019-03-25 14:38:38 -04:00
|
|
|
padding: 0 7px 1px;
|
2017-09-01 07:29:50 -04:00
|
|
|
border-radius: 10px;
|
2018-02-26 11:42:57 +01:00
|
|
|
margin-right: 5px;
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
2018-02-26 11:42:57 +01:00
|
|
|
}
|
2017-09-01 07:29:50 -04:00
|
|
|
|
|
|
|
.active {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.helpful-flags {
|
2019-03-25 14:38:38 -04:00
|
|
|
background-color: $success;
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.flagged-posts {
|
2018-06-08 11:49:31 +02:00
|
|
|
background-color: #e49735;
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.warnings-received {
|
2019-03-25 14:38:38 -04:00
|
|
|
background-color: $danger-medium;
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.deleted-posts {
|
2019-03-25 14:38:38 -04:00
|
|
|
background-color: $danger-medium;
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.suspensions {
|
2019-03-25 14:38:38 -04:00
|
|
|
background-color: $danger;
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-field {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
label {
|
|
|
|
width: auto;
|
|
|
|
text-align: left;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.instructions {
|
2019-03-25 14:38:38 -04:00
|
|
|
color: $primary-medium;
|
2017-09-01 07:29:50 -04:00
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 10px;
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-down-1;
|
2017-09-01 07:29:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-18 20:08:52 -05:00
|
|
|
.user-content {
|
|
|
|
.admin-controls nav {
|
|
|
|
margin: 0;
|
|
|
|
.nav-pills {
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-22 19:19:15 +08:00
|
|
|
}
|
|
|
|
|
2014-10-08 14:38:18 -04:00
|
|
|
.user-field {
|
|
|
|
.required {
|
2018-10-03 22:26:05 -04:00
|
|
|
vertical-align: top;
|
2014-10-08 14:38:18 -04:00
|
|
|
color: $danger;
|
|
|
|
font-weight: bold;
|
2018-10-03 22:26:05 -04:00
|
|
|
margin-left: 0.25em;
|
2014-10-08 14:38:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-29 17:38:39 -05:00
|
|
|
.public-user-fields {
|
2017-02-16 01:45:20 -08:00
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 8px;
|
2017-09-01 07:29:50 -04:00
|
|
|
|
2015-01-29 17:38:39 -05:00
|
|
|
.user-field-name {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2017-09-01 07:29:50 -04:00
|
|
|
.collapsed-info & {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-01-29 17:38:39 -05:00
|
|
|
}
|
|
|
|
|
2014-04-20 15:17:11 -04:00
|
|
|
.avatar-selector {
|
2017-11-29 18:09:44 +01:00
|
|
|
.avatar-choice {
|
2019-07-19 10:39:38 -04:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 2em 1fr auto;
|
|
|
|
grid-template-rows: auto auto;
|
|
|
|
align-items: center;
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
margin-bottom: 0.75em;
|
|
|
|
}
|
|
|
|
span {
|
|
|
|
word-break: break-word; // Prevents long emails from breaking the modal width
|
|
|
|
}
|
|
|
|
input[type="radio"] {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
2019-07-19 10:39:38 -04:00
|
|
|
$label-max-width: 300px;
|
|
|
|
label.radio {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
max-width: $label-max-width;
|
|
|
|
margin: 0 0.5em 0 0;
|
|
|
|
padding: 0;
|
|
|
|
.avatar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
margin: 0 0.75em 0 0;
|
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
2019-07-19 10:39:38 -04:00
|
|
|
.error {
|
2017-11-29 18:09:44 +01:00
|
|
|
color: $danger;
|
2019-07-19 10:39:38 -04:00
|
|
|
margin: 0;
|
|
|
|
max-width: calc(#{$label-max-width} - 20px);
|
|
|
|
grid-column-start: 2;
|
|
|
|
grid-column-end: 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
// IE11 Support
|
|
|
|
.avatar-choice {
|
|
|
|
display: -ms-grid;
|
|
|
|
-ms-grid-columns: 2em 1fr auto;
|
|
|
|
-ms-grid-rows: auto auto;
|
|
|
|
input[type="radio"] {
|
|
|
|
-ms-grid-row: 1;
|
|
|
|
-ms-grid-column: 1;
|
|
|
|
}
|
|
|
|
label.radio {
|
|
|
|
-ms-grid-row: 1;
|
|
|
|
-ms-grid-column: 2;
|
|
|
|
}
|
2019-07-19 11:46:20 -04:00
|
|
|
span.avatar-uploader {
|
2019-07-19 10:39:38 -04:00
|
|
|
-ms-grid-row: 1;
|
|
|
|
-ms-grid-column: 3;
|
|
|
|
}
|
|
|
|
.error {
|
|
|
|
-ms-grid-row: 2;
|
|
|
|
-ms-grid-column-span: 3;
|
|
|
|
}
|
2017-11-29 18:09:44 +01:00
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
2014-09-26 14:48:34 -04:00
|
|
|
|
2016-01-20 15:11:52 +11:00
|
|
|
.top-section {
|
2016-04-04 11:18:15 +02:00
|
|
|
@include clearfix();
|
2016-03-30 18:05:16 +02:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
2016-01-20 15:11:52 +11:00
|
|
|
}
|
2016-03-30 18:05:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-section,
|
2016-04-17 13:19:06 +02:00
|
|
|
.top-sub-section {
|
2016-03-30 18:05:16 +02:00
|
|
|
margin-bottom: 20px;
|
2018-03-02 14:43:54 -05:00
|
|
|
&.badges-section {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2016-03-30 18:05:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.stats-title {
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-bottom: 10px;
|
2018-03-02 14:43:54 -05:00
|
|
|
width: 100%;
|
2016-03-30 18:05:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.stats-section {
|
|
|
|
ul {
|
|
|
|
margin: 10px 0;
|
2016-01-20 15:11:52 +11:00
|
|
|
}
|
2016-03-30 18:05:16 +02:00
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
2019-03-25 14:38:38 -04:00
|
|
|
padding: 10px 14px 10px 0;
|
|
|
|
margin: 0 10px 10px 0;
|
2016-11-09 16:38:07 -02:00
|
|
|
|
2018-06-08 11:49:31 +02:00
|
|
|
&.linked-stat {
|
|
|
|
// This makes the entire "box" (the li) clickable instead of a narrow area.
|
2016-11-09 16:38:07 -02:00
|
|
|
padding: 0;
|
|
|
|
a {
|
2019-03-25 14:38:38 -04:00
|
|
|
padding: 10px 14px 10px 0;
|
2016-11-09 16:38:07 -02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
2017-07-22 23:48:31 +01:00
|
|
|
color: $primary;
|
2016-11-09 16:38:07 -02:00
|
|
|
}
|
|
|
|
}
|
2016-01-20 15:11:52 +11:00
|
|
|
}
|
2016-03-30 18:05:16 +02:00
|
|
|
|
|
|
|
.value {
|
|
|
|
font-weight: bold;
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-up-2;
|
2016-01-20 15:11:52 +11:00
|
|
|
}
|
2016-03-30 23:16:22 +02:00
|
|
|
|
|
|
|
.label {
|
2019-03-25 14:38:38 -04:00
|
|
|
color: $primary-medium;
|
2016-03-30 23:16:22 +02:00
|
|
|
}
|
2016-03-30 18:05:16 +02:00
|
|
|
}
|
|
|
|
|
2016-04-17 13:19:06 +02:00
|
|
|
.top-sub-section {
|
2016-03-30 18:05:16 +02:00
|
|
|
width: 50%;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
max-width: 95%;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
2017-06-11 22:20:14 -04:00
|
|
|
border-left: $primary-low solid 2px;
|
2016-03-30 18:05:16 +02:00
|
|
|
padding: 5px 8px;
|
|
|
|
margin: 10px 0;
|
2016-01-20 15:11:52 +11:00
|
|
|
}
|
2016-03-30 18:05:16 +02:00
|
|
|
|
|
|
|
.topic-info {
|
2019-03-25 14:38:38 -04:00
|
|
|
color: $primary-medium;
|
2016-01-20 15:11:52 +11:00
|
|
|
}
|
2017-09-01 07:29:50 -04:00
|
|
|
|
2018-06-08 11:49:31 +02:00
|
|
|
@media all and (max-width: 600px) {
|
2017-09-01 07:29:50 -04:00
|
|
|
float: none;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2016-01-20 15:11:52 +11:00
|
|
|
}
|
|
|
|
|
2016-04-18 18:07:14 +02:00
|
|
|
.replies-section,
|
|
|
|
.topics-section,
|
|
|
|
.links-section {
|
|
|
|
li {
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-13 23:02:51 +02:00
|
|
|
.links-section {
|
|
|
|
.domain {
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-down-1;
|
2019-03-25 14:38:38 -04:00
|
|
|
color: $primary-medium;
|
2016-04-13 23:02:51 +02:00
|
|
|
}
|
2016-03-30 18:05:16 +02:00
|
|
|
}
|
|
|
|
|
2018-07-18 16:37:50 -04:00
|
|
|
.top-categories-section {
|
|
|
|
table {
|
|
|
|
max-width: 95%;
|
|
|
|
tr {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
td,
|
|
|
|
th {
|
|
|
|
padding: 0.5em;
|
|
|
|
&.topic-count,
|
|
|
|
&.reply-count {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-13 15:20:42 -04:00
|
|
|
.summary-user-list {
|
2016-04-13 23:02:51 +02:00
|
|
|
li {
|
2019-03-25 14:38:38 -04:00
|
|
|
height: 45px;
|
2016-04-13 23:02:51 +02:00
|
|
|
}
|
2016-03-30 18:05:16 +02:00
|
|
|
}
|
|
|
|
|
2017-09-01 07:29:50 -04:00
|
|
|
.groups {
|
|
|
|
.group-link {
|
|
|
|
color: $tertiary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-preferences {
|
|
|
|
textarea {
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
|
2019-03-25 14:38:38 -04:00
|
|
|
.tracking-controls {
|
|
|
|
label {
|
|
|
|
align-items: center;
|
2019-06-27 21:36:24 -04:00
|
|
|
display: inline-block;
|
2019-03-25 14:38:38 -04:00
|
|
|
.d-icon {
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
}
|
2019-06-27 21:36:24 -04:00
|
|
|
.select-kit.multi-select {
|
2019-07-11 21:57:53 +08:00
|
|
|
@include breakpoint(mobile-extra-large) {
|
2019-06-27 21:36:24 -04:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.show-tracking {
|
|
|
|
float: right;
|
|
|
|
}
|
2019-03-25 14:38:38 -04:00
|
|
|
}
|
|
|
|
|
2017-09-01 07:29:50 -04:00
|
|
|
.static {
|
|
|
|
color: $primary;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.instructions {
|
2019-03-25 14:38:38 -04:00
|
|
|
color: $primary-medium;
|
2017-09-01 07:29:50 -04:00
|
|
|
margin-bottom: 10px;
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-down-1;
|
|
|
|
line-height: $line-height-large;
|
2017-09-01 07:29:50 -04:00
|
|
|
|
|
|
|
a[href] {
|
|
|
|
color: $tertiary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.warning {
|
2017-10-10 16:07:46 -04:00
|
|
|
background-color: $danger-medium;
|
2017-09-01 07:29:50 -04:00
|
|
|
padding: 5px 8px;
|
|
|
|
color: $secondary;
|
|
|
|
width: 520px;
|
|
|
|
}
|
|
|
|
|
2018-05-23 18:51:08 -07:00
|
|
|
.warning-wrap {
|
|
|
|
height: 30px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2019-03-25 14:38:38 -04:00
|
|
|
.tracking-controls {
|
2017-09-01 07:29:50 -04:00
|
|
|
margin-top: 24px;
|
|
|
|
}
|
2018-06-28 10:12:32 +02:00
|
|
|
|
|
|
|
&.second-factor-backup-preferences {
|
|
|
|
padding-left: 0;
|
|
|
|
|
|
|
|
.second-factor-token-input {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-horizontal .instructions {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.backup-codes {
|
|
|
|
margin: 2em 0;
|
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid $primary-low;
|
|
|
|
}
|
|
|
|
|
|
|
|
.backup-codes-area {
|
|
|
|
resize: none;
|
|
|
|
padding: 0;
|
|
|
|
height: auto;
|
|
|
|
text-align: center;
|
|
|
|
width: 250px;
|
|
|
|
background: white;
|
|
|
|
border: 0;
|
|
|
|
cursor: auto;
|
|
|
|
overflow: hidden;
|
|
|
|
outline: none;
|
|
|
|
font-family: monospace;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
box-shadow: none;
|
|
|
|
border-color: #e9e9e9;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.backup-codes-copy-btn,
|
|
|
|
.backup-codes-download-btn {
|
|
|
|
right: 5px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.backup-codes-copy-btn {
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.backup-codes-download-btn {
|
|
|
|
top: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-23 16:51:57 +01:00
|
|
|
|
|
|
|
.pref-associated-accounts table {
|
|
|
|
td {
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
}
|
2016-01-20 15:11:52 +11:00
|
|
|
}
|
2016-07-08 12:58:18 +10:00
|
|
|
|
2017-09-01 07:29:50 -04:00
|
|
|
.paginated-topics-list {
|
|
|
|
.user-content {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 0;
|
2016-07-08 12:58:18 +10:00
|
|
|
}
|
|
|
|
}
|
2017-09-15 13:24:43 -04:00
|
|
|
|
|
|
|
.large-notification {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.d-icon {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
2019-05-25 16:53:03 +03:00
|
|
|
span:first-child {
|
2017-09-15 13:24:43 -04:00
|
|
|
color: $primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Can remove this once other languages have removed html from i18n values
|
2018-06-08 11:49:31 +02:00
|
|
|
div {
|
2017-09-15 13:24:43 -04:00
|
|
|
.fa {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-23 17:14:51 +01:00
|
|
|
|
2018-02-21 14:23:47 -08:00
|
|
|
.qr-code-container {
|
2018-06-08 11:49:31 +02:00
|
|
|
display: flex;
|
|
|
|
.qr-code {
|
|
|
|
padding: 5px 5px 0 5px;
|
|
|
|
background-color: white;
|
|
|
|
}
|
2018-02-21 14:23:47 -08:00
|
|
|
}
|
2018-04-20 17:44:17 +02:00
|
|
|
|
2019-06-26 16:58:06 -07:00
|
|
|
.second-factor {
|
|
|
|
&.instructions {
|
|
|
|
color: $primary-medium;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: $font-down-1;
|
|
|
|
}
|
|
|
|
.second-factor-item {
|
|
|
|
margin-top: 0.75em;
|
|
|
|
}
|
|
|
|
.btn.edit {
|
|
|
|
min-height: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-20 17:44:17 +02:00
|
|
|
.primary-textual .staged,
|
|
|
|
#user-card .staged {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2018-07-18 12:57:43 +02:00
|
|
|
|
|
|
|
.selectable-avatars {
|
|
|
|
max-height: 350px;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
text-align: justify;
|
|
|
|
.selectable-avatar {
|
|
|
|
margin: 5px;
|
|
|
|
display: inline-block;
|
|
|
|
.avatar {
|
2018-07-18 22:54:35 +02:00
|
|
|
cursor: pointer;
|
2018-07-18 12:57:43 +02:00
|
|
|
width: 60px;
|
|
|
|
height: 60px;
|
|
|
|
&:hover {
|
|
|
|
box-shadow: 0 0 10px $primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|