2016-02-29 18:42:08 +00:00
|
|
|
.card {
|
2018-07-28 17:25:33 +00:00
|
|
|
& > a {
|
2016-03-12 19:47:22 +00:00
|
|
|
display: block;
|
2018-07-28 17:25:33 +00:00
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
|
2017-07-21 10:47:16 +00:00
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint) {
|
|
|
|
box-shadow: none;
|
2017-07-21 03:28:51 +00:00
|
|
|
}
|
2016-02-29 18:42:08 +00:00
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
.card__bar {
|
|
|
|
background: lighten($ui-base-color, 8%);
|
2018-05-26 13:29:32 +00:00
|
|
|
}
|
2016-02-29 18:42:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
&__img {
|
|
|
|
height: 130px;
|
2016-03-12 19:47:22 +00:00
|
|
|
position: relative;
|
2018-07-28 17:25:33 +00:00
|
|
|
background: darken($ui-base-color, 12%);
|
|
|
|
border-radius: 4px 4px 0 0;
|
2016-02-29 18:42:08 +00:00
|
|
|
|
|
|
|
img {
|
2016-03-19 13:02:30 +00:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2018-07-28 17:25:33 +00:00
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
object-fit: cover;
|
|
|
|
border-radius: 4px 4px 0 0;
|
2016-03-19 13:02:30 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
height: 200px;
|
2016-03-19 13:02:30 +00:00
|
|
|
}
|
2016-03-06 11:34:39 +00:00
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint) {
|
|
|
|
display: none;
|
2016-03-06 11:34:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
&__bar {
|
|
|
|
position: relative;
|
|
|
|
padding: 15px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
border-radius: 0 0 4px 4px;
|
2016-10-03 14:10:17 +00:00
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
@media screen and (max-width: $no-gap-breakpoint) {
|
|
|
|
border-radius: 0;
|
2016-10-03 14:10:17 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
.avatar {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
padding-top: 2px;
|
2016-10-03 14:10:17 +00:00
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: darken($ui-base-color, 8%);
|
2019-06-02 16:04:41 +00:00
|
|
|
object-fit: cover;
|
2018-07-28 17:25:33 +00:00
|
|
|
}
|
2016-10-03 14:10:17 +00:00
|
|
|
}
|
2016-03-19 11:49:34 +00:00
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
.display-name {
|
|
|
|
margin-left: 15px;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-size: 15px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2018-02-26 15:18:41 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2018-02-26 15:18:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-19 11:49:34 +00:00
|
|
|
.pagination {
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
a,
|
|
|
|
.current,
|
2018-02-26 02:31:28 +00:00
|
|
|
.newer,
|
|
|
|
.older,
|
2017-05-07 18:47:31 +00:00
|
|
|
.page,
|
|
|
|
.gap {
|
2016-03-19 11:49:34 +00:00
|
|
|
font-size: 14px;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2016-03-19 11:49:34 +00:00
|
|
|
font-weight: 500;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 6px 10px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.current {
|
2017-05-08 13:57:49 +00:00
|
|
|
background: $simple-background-color;
|
2016-03-19 11:49:34 +00:00
|
|
|
border-radius: 100px;
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $inverted-text-color;
|
2016-03-19 11:49:34 +00:00
|
|
|
cursor: default;
|
2017-04-23 22:38:37 +00:00
|
|
|
margin: 0 10px;
|
2016-03-19 11:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.gap {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2018-02-26 02:31:28 +00:00
|
|
|
.older,
|
|
|
|
.newer {
|
2016-03-19 11:49:34 +00:00
|
|
|
text-transform: uppercase;
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $secondary-text-color;
|
2016-03-19 11:49:34 +00:00
|
|
|
}
|
|
|
|
|
2018-02-26 02:31:28 +00:00
|
|
|
.older {
|
2016-03-19 11:49:34 +00:00
|
|
|
float: left;
|
|
|
|
padding-left: 0;
|
|
|
|
|
2018-09-28 00:11:14 +00:00
|
|
|
.fa {
|
2016-03-19 11:49:34 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-26 02:31:28 +00:00
|
|
|
.newer {
|
2016-03-19 11:49:34 +00:00
|
|
|
float: right;
|
|
|
|
padding-right: 0;
|
|
|
|
|
2018-09-28 00:11:14 +00:00
|
|
|
.fa {
|
2016-03-19 11:49:34 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled {
|
|
|
|
cursor: default;
|
2018-04-21 19:35:55 +00:00
|
|
|
color: lighten($inverted-text-color, 10%);
|
2016-03-19 11:49:34 +00:00
|
|
|
}
|
2016-10-03 14:10:17 +00:00
|
|
|
|
2017-10-04 20:49:36 +00:00
|
|
|
@media screen and (max-width: 700px) {
|
2016-10-03 14:10:17 +00:00
|
|
|
padding: 30px 20px;
|
|
|
|
|
2017-10-04 20:49:36 +00:00
|
|
|
.page {
|
2016-10-03 14:10:17 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-02-26 02:31:28 +00:00
|
|
|
.newer,
|
|
|
|
.older {
|
2016-10-03 14:10:17 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
2016-03-19 11:49:34 +00:00
|
|
|
}
|
2016-03-19 13:02:30 +00:00
|
|
|
|
|
|
|
.nothing-here {
|
2018-07-28 17:25:33 +00:00
|
|
|
background: $ui-base-color;
|
|
|
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $light-text-color;
|
2016-03-19 13:02:30 +00:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
text-align: center;
|
2018-07-28 17:25:33 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2016-03-19 13:02:30 +00:00
|
|
|
cursor: default;
|
2016-12-29 15:54:54 +00:00
|
|
|
border-radius: 4px;
|
2018-07-28 17:25:33 +00:00
|
|
|
padding: 20px;
|
|
|
|
min-height: 30vh;
|
2016-12-29 15:54:54 +00:00
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
&--under-tabs {
|
|
|
|
border-radius: 0 0 4px 4px;
|
2017-08-16 15:12:58 +00:00
|
|
|
}
|
2018-12-06 16:36:11 +00:00
|
|
|
|
|
|
|
&--flexible {
|
|
|
|
box-sizing: border-box;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
2017-08-16 15:12:58 +00:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:39:24 +00:00
|
|
|
.account-role,
|
|
|
|
.simple_form .recommended {
|
2017-08-16 15:12:58 +00:00
|
|
|
display: inline-block;
|
|
|
|
padding: 4px 6px;
|
|
|
|
cursor: default;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 12px;
|
|
|
|
font-weight: 500;
|
2017-11-17 00:22:38 +00:00
|
|
|
color: $ui-secondary-color;
|
|
|
|
background-color: rgba($ui-secondary-color, 0.1);
|
|
|
|
border: 1px solid rgba($ui-secondary-color, 0.5);
|
|
|
|
|
|
|
|
&.moderator {
|
|
|
|
color: $success-green;
|
|
|
|
background-color: rgba($success-green, 0.1);
|
|
|
|
border-color: rgba($success-green, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.admin {
|
2017-11-17 18:59:53 +00:00
|
|
|
color: lighten($error-red, 12%);
|
|
|
|
background-color: rgba(lighten($error-red, 12%), 0.1);
|
|
|
|
border-color: rgba(lighten($error-red, 12%), 0.5);
|
2017-11-17 00:22:38 +00:00
|
|
|
}
|
2017-08-16 15:12:58 +00:00
|
|
|
}
|
2018-04-14 10:41:08 +00:00
|
|
|
|
|
|
|
.account__header__fields {
|
|
|
|
padding: 0;
|
|
|
|
margin: 15px -15px -15px;
|
|
|
|
border: 0 none;
|
2018-07-28 17:25:33 +00:00
|
|
|
border-top: 1px solid lighten($ui-base-color, 12%);
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 12%);
|
2018-05-04 22:55:09 +00:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
2018-04-14 10:41:08 +00:00
|
|
|
|
2018-05-04 22:55:09 +00:00
|
|
|
dl {
|
|
|
|
display: flex;
|
2018-07-28 17:25:33 +00:00
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 12%);
|
2018-04-14 10:41:08 +00:00
|
|
|
}
|
|
|
|
|
2018-05-04 22:55:09 +00:00
|
|
|
dt,
|
|
|
|
dd {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 14px;
|
2018-04-14 10:41:08 +00:00
|
|
|
text-align: center;
|
2018-05-04 22:55:09 +00:00
|
|
|
max-height: 48px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
dt {
|
|
|
|
font-weight: 500;
|
|
|
|
width: 120px;
|
|
|
|
flex: 0 0 auto;
|
2018-04-21 19:35:55 +00:00
|
|
|
color: $secondary-text-color;
|
2018-04-14 10:41:08 +00:00
|
|
|
background: rgba(darken($ui-base-color, 8%), 0.5);
|
|
|
|
}
|
|
|
|
|
2018-05-04 22:55:09 +00:00
|
|
|
dd {
|
|
|
|
flex: 1 1 auto;
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $darker-text-color;
|
2018-04-14 10:41:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2018-04-18 14:52:15 +00:00
|
|
|
color: $highlight-text-color;
|
2018-04-14 10:41:08 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-18 14:45:58 +00:00
|
|
|
.verified {
|
|
|
|
border: 1px solid rgba($valid-value-color, 0.5);
|
|
|
|
background: rgba($valid-value-color, 0.25);
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $valid-value-color;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__mark {
|
|
|
|
color: $valid-value-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-04 22:55:09 +00:00
|
|
|
dl:last-child {
|
|
|
|
border-bottom: 0;
|
2018-04-14 10:41:08 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-04 03:25:59 +00:00
|
|
|
|
|
|
|
.directory__tag .trends__item__current {
|
|
|
|
width: auto;
|
|
|
|
}
|
2019-04-09 14:06:30 +00:00
|
|
|
|
|
|
|
.pending-account {
|
|
|
|
&__header {
|
|
|
|
color: $darker-text-color;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
color: $primary-text-color;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__body {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
}
|