2015-08-27 03:51:56 +08:00
|
|
|
.menu-panel.slide-in {
|
2015-08-26 00:50:19 +08:00
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
2018-02-21 01:18:20 +08:00
|
|
|
box-shadow: shadow("header");
|
2018-12-12 01:15:20 +08:00
|
|
|
&.animate {
|
|
|
|
transition: right 0.2s ease-out, left 0.2s ease-out;
|
|
|
|
}
|
2015-09-11 00:49:54 +08:00
|
|
|
|
|
|
|
.panel-body {
|
2020-03-24 01:25:33 +08:00
|
|
|
width: 100%;
|
2015-09-11 00:49:54 +08:00
|
|
|
}
|
2015-08-27 02:42:42 +08:00
|
|
|
}
|
2018-12-12 01:15:20 +08:00
|
|
|
.header-cloak {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-08-27 02:42:42 +08:00
|
|
|
|
2015-08-27 03:51:56 +08:00
|
|
|
.menu-panel.drop-down {
|
2015-08-27 05:21:20 +08:00
|
|
|
position: absolute;
|
2015-09-09 06:31:44 +08:00
|
|
|
// positions are relative to the .d-header .panel div
|
|
|
|
top: 100%; // directly underneath .panel
|
|
|
|
right: -10px; // 10px to the right of .panel - adjust as needed
|
2020-08-11 04:17:15 +08:00
|
|
|
max-height: 80vh;
|
2015-08-27 02:42:42 +08:00
|
|
|
}
|
|
|
|
|
2015-08-27 03:51:56 +08:00
|
|
|
.menu-panel {
|
2020-08-04 10:57:10 +08:00
|
|
|
border: 1px solid var(--primary-low);
|
2018-02-21 01:18:20 +08:00
|
|
|
box-shadow: shadow("menu-panel");
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--secondary);
|
2018-01-17 08:05:12 +08:00
|
|
|
z-index: z("header");
|
2015-08-30 07:26:02 +08:00
|
|
|
padding: 0.5em;
|
2020-12-18 11:50:50 +08:00
|
|
|
width: 320px;
|
2020-08-11 04:17:15 +08:00
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2015-09-02 05:33:37 +08:00
|
|
|
hr {
|
|
|
|
margin: 3px 0;
|
|
|
|
}
|
|
|
|
|
2015-08-27 03:51:56 +08:00
|
|
|
.panel-header {
|
2015-08-26 11:44:48 +08:00
|
|
|
position: absolute;
|
|
|
|
right: 20px;
|
|
|
|
}
|
|
|
|
|
2015-08-26 00:50:19 +08:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2015-08-27 03:51:56 +08:00
|
|
|
.panel-body {
|
2020-08-11 04:17:15 +08:00
|
|
|
display: flex;
|
2018-12-12 01:15:20 +08:00
|
|
|
touch-action: pan-y pinch-zoom;
|
2020-08-11 04:17:15 +08:00
|
|
|
overflow: hidden;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-body-contents {
|
|
|
|
max-height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-body-bottom {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 0 0%; // safari height fix
|
|
|
|
margin-top: 0.5em;
|
2020-12-18 23:03:51 +08:00
|
|
|
flex-wrap: wrap;
|
|
|
|
|
2020-08-11 04:17:15 +08:00
|
|
|
.show-all {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.notifications-dismiss {
|
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
|
2020-08-13 05:14:48 +08:00
|
|
|
.btn {
|
2020-08-11 04:17:15 +08:00
|
|
|
background-color: var(--primary-very-low);
|
|
|
|
color: var(--primary-high);
|
|
|
|
&:hover {
|
|
|
|
background: var(--primary-low);
|
|
|
|
color: var(--primary);
|
|
|
|
}
|
|
|
|
}
|
2015-08-27 03:51:56 +08:00
|
|
|
}
|
2019-01-18 00:42:03 +08:00
|
|
|
|
|
|
|
.badge-notification {
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
}
|
2015-08-27 03:51:56 +08:00
|
|
|
}
|
|
|
|
|
2020-09-29 09:59:45 +08:00
|
|
|
.hamburger-panel {
|
2021-01-15 07:25:19 +08:00
|
|
|
a.widget-link {
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
@include ellipsis;
|
|
|
|
}
|
2020-09-29 09:59:45 +08:00
|
|
|
.panel-body {
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.badge-category {
|
|
|
|
max-width: 100px;
|
|
|
|
}
|
2020-08-13 04:03:08 +08:00
|
|
|
}
|
|
|
|
|
2015-09-04 03:57:00 +08:00
|
|
|
.menu-links.columned {
|
|
|
|
li {
|
|
|
|
width: 50%;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-29 02:32:53 +08:00
|
|
|
.menu-panel {
|
2018-08-04 05:43:07 +08:00
|
|
|
li,
|
|
|
|
li.heading {
|
2020-05-29 14:05:21 +08:00
|
|
|
a.widget-link,
|
|
|
|
a.categories-link {
|
2015-08-30 07:26:02 +08:00
|
|
|
padding: 0.25em 0.5em;
|
2015-08-26 00:50:19 +08:00
|
|
|
display: block;
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary);
|
2018-06-08 17:49:31 +08:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--highlight-medium);
|
2018-04-14 00:53:04 +08:00
|
|
|
outline: none;
|
2015-08-26 00:50:19 +08:00
|
|
|
}
|
2020-05-29 14:05:21 +08:00
|
|
|
|
|
|
|
.d-icon {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-medium);
|
2020-05-29 14:05:21 +08:00
|
|
|
}
|
2015-08-26 00:50:19 +08:00
|
|
|
}
|
2015-09-05 04:56:02 +08:00
|
|
|
|
|
|
|
.new {
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-down-1;
|
2015-09-05 04:56:02 +08:00
|
|
|
margin-left: 0.5em;
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-med-or-secondary-med);
|
2015-09-05 04:56:02 +08:00
|
|
|
}
|
2015-08-26 00:50:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
li.category-link {
|
|
|
|
float: left;
|
|
|
|
background-color: transparent;
|
2018-02-03 08:03:25 +08:00
|
|
|
display: inline-flex;
|
2018-08-11 02:00:06 +08:00
|
|
|
align-items: center;
|
2018-05-24 16:15:57 +08:00
|
|
|
padding: 0.25em 0.5em;
|
|
|
|
width: 50%;
|
|
|
|
box-sizing: border-box;
|
2018-08-04 05:43:07 +08:00
|
|
|
a {
|
2018-08-07 21:47:01 +08:00
|
|
|
display: inline-flex;
|
2018-08-04 05:43:07 +08:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background: transparent;
|
2020-05-29 14:05:21 +08:00
|
|
|
|
|
|
|
.category-name {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary);
|
2020-05-29 14:05:21 +08:00
|
|
|
}
|
2018-08-04 05:43:07 +08:00
|
|
|
}
|
|
|
|
}
|
2015-08-26 00:50:19 +08:00
|
|
|
.badge-notification {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-med-or-secondary-med);
|
2015-08-26 00:50:19 +08:00
|
|
|
background-color: transparent;
|
2015-08-29 02:32:53 +08:00
|
|
|
display: inline;
|
2015-09-03 03:42:20 +08:00
|
|
|
padding: 0;
|
2018-02-03 08:03:25 +08:00
|
|
|
font-size: $font-down-1;
|
|
|
|
line-height: $line-height-large;
|
|
|
|
}
|
|
|
|
.badge-wrapper {
|
2018-06-08 17:49:31 +08:00
|
|
|
&.bar,
|
|
|
|
&.bullet {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary);
|
2018-08-06 23:11:29 +08:00
|
|
|
padding: 0 0 0 0.15em;
|
2018-02-03 08:03:25 +08:00
|
|
|
}
|
|
|
|
&.box {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--secondary);
|
2018-02-03 08:03:25 +08:00
|
|
|
+ a.badge.badge-notification {
|
|
|
|
padding-top: 2px;
|
|
|
|
}
|
|
|
|
span {
|
2018-02-17 04:58:10 +08:00
|
|
|
z-index: z("base") * -1;
|
2018-02-03 08:03:25 +08:00
|
|
|
}
|
|
|
|
}
|
2015-08-26 00:50:19 +08:00
|
|
|
}
|
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
|
2015-08-26 00:50:19 +08:00
|
|
|
// note these topic counts only appear for anons in the category hamburger drop down
|
|
|
|
b.topics-count {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-med-or-secondary-med);
|
2015-08-26 00:50:19 +08:00
|
|
|
font-weight: normal;
|
2018-02-03 08:03:25 +08:00
|
|
|
font-size: $font-down-1;
|
|
|
|
}
|
2015-09-03 03:42:20 +08:00
|
|
|
|
2019-06-28 01:26:14 +08:00
|
|
|
div.discourse-tags {
|
|
|
|
font-size: $font-down-1;
|
|
|
|
}
|
2015-08-26 00:50:19 +08:00
|
|
|
}
|
2015-08-27 02:42:42 +08:00
|
|
|
|
2015-08-29 02:32:53 +08:00
|
|
|
.user-menu {
|
2019-09-09 23:03:57 +08:00
|
|
|
.quick-access-panel {
|
2018-03-23 15:19:15 +08:00
|
|
|
width: 100%;
|
2020-08-11 04:17:15 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 0;
|
|
|
|
max-height: 100%;
|
2020-08-04 10:57:10 +08:00
|
|
|
border-top: 1px solid var(--primary-low);
|
2020-08-29 08:20:59 +08:00
|
|
|
padding-top: 0.75em;
|
2020-08-11 04:17:15 +08:00
|
|
|
margin-top: -1px;
|
2021-02-04 00:45:54 +08:00
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2015-08-29 02:32:53 +08:00
|
|
|
h3 {
|
|
|
|
padding: 0 0.4em;
|
|
|
|
font-weight: bold;
|
|
|
|
margin: 0.5em 0;
|
|
|
|
}
|
|
|
|
|
2019-02-01 02:59:49 +08:00
|
|
|
.d-icon,
|
|
|
|
&:hover .d-icon {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-medium);
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
|
|
|
.icon {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-high);
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2020-05-29 14:05:21 +08:00
|
|
|
|
2020-08-11 04:17:15 +08:00
|
|
|
ul {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column wrap;
|
|
|
|
overflow: hidden;
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
|
2015-08-29 02:32:53 +08:00
|
|
|
li {
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--tertiary-low);
|
2020-08-11 04:17:15 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
list-style-type: none;
|
2017-09-15 02:26:31 +08:00
|
|
|
|
|
|
|
// This is until other languages remove the HTML from within
|
|
|
|
// notifications. It can then be removed
|
2018-11-27 05:49:57 +08:00
|
|
|
div .fa {
|
2017-09-15 02:26:31 +08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-05-25 21:53:03 +08:00
|
|
|
span:first-child {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary);
|
2018-04-14 00:53:04 +08:00
|
|
|
}
|
|
|
|
|
2020-12-18 23:03:51 +08:00
|
|
|
span.double-user,
|
2020-11-09 13:06:52 +08:00
|
|
|
// e.g., "username, username2"
|
|
|
|
span.multi-user
|
|
|
|
// e.g., "username, username2, and n others"
|
|
|
|
{
|
|
|
|
display: inline-flex;
|
|
|
|
max-width: 100%;
|
|
|
|
align-items: baseline;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2020-12-18 23:03:51 +08:00
|
|
|
span.multi-user
|
2020-11-09 13:06:52 +08:00
|
|
|
// e.g., "username, username2, and n others"
|
|
|
|
{
|
|
|
|
span.multi-username:nth-of-type(2) {
|
|
|
|
// margin between username2 and "and n others"
|
|
|
|
margin-right: 0.25em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// truncate when usernames are very long
|
|
|
|
span.multi-username {
|
|
|
|
@include ellipsis;
|
|
|
|
flex: 0 1 auto;
|
2020-11-10 07:05:09 +08:00
|
|
|
min-width: 1.2em;
|
2020-11-09 13:06:52 +08:00
|
|
|
max-width: 10em;
|
|
|
|
&:nth-of-type(2) {
|
|
|
|
// margin for comma between username and username2
|
|
|
|
margin-left: 0.25em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--highlight-medium);
|
2018-06-08 17:49:31 +08:00
|
|
|
outline: none;
|
2018-04-14 00:53:04 +08:00
|
|
|
}
|
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
a {
|
2020-08-11 04:17:15 +08:00
|
|
|
display: flex;
|
2021-01-21 01:50:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
a,
|
|
|
|
button {
|
2020-08-11 04:17:15 +08:00
|
|
|
padding: 0.25em 0.5em;
|
2020-05-29 14:05:21 +08:00
|
|
|
|
2018-08-10 00:04:34 +08:00
|
|
|
> div {
|
|
|
|
overflow: hidden; // clears the text from wrapping below icons
|
2020-04-01 08:55:11 +08:00
|
|
|
overflow-wrap: anywhere;
|
2020-04-01 09:57:09 +08:00
|
|
|
@supports not (overflow-wrap: anywhere) {
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
|
2019-09-09 23:03:57 +08:00
|
|
|
// Truncate items with more than 2 lines.
|
2020-08-29 08:20:59 +08:00
|
|
|
@include line-clamp(2);
|
2018-08-10 00:04:34 +08:00
|
|
|
}
|
2018-04-14 00:53:04 +08:00
|
|
|
}
|
|
|
|
|
2015-08-29 02:32:53 +08:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
2017-11-08 02:48:35 +08:00
|
|
|
li:not(.show-all) {
|
2020-05-29 14:05:21 +08:00
|
|
|
padding: 0;
|
2020-08-11 04:17:15 +08:00
|
|
|
align-self: flex-start;
|
|
|
|
width: 100%;
|
2018-11-27 05:49:57 +08:00
|
|
|
.d-icon {
|
2020-05-30 04:48:47 +08:00
|
|
|
padding-top: 0.2em;
|
2020-05-29 14:05:21 +08:00
|
|
|
margin-right: 0.5em;
|
2017-11-08 02:48:35 +08:00
|
|
|
}
|
|
|
|
}
|
2015-08-29 02:32:53 +08:00
|
|
|
.is-warning {
|
2018-11-27 05:49:57 +08:00
|
|
|
.d-icon-far-envelope {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--danger);
|
2015-08-29 02:32:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.read {
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--secondary);
|
2015-08-29 02:32:53 +08:00
|
|
|
}
|
|
|
|
.none {
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
2019-12-04 11:40:59 +08:00
|
|
|
.spinner-container {
|
|
|
|
min-height: 2em;
|
2015-08-29 02:32:53 +08:00
|
|
|
}
|
|
|
|
.spinner {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
border-width: 2px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2019-09-09 23:03:57 +08:00
|
|
|
.show-all a {
|
2017-11-08 02:48:35 +08:00
|
|
|
width: 100%;
|
2019-09-09 23:03:57 +08:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
min-height: 30px;
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-med-or-secondary-high);
|
|
|
|
background: var(--blend-primary-secondary-5);
|
2017-11-08 02:48:35 +08:00
|
|
|
&:hover {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary);
|
|
|
|
background: var(--primary-low);
|
2017-11-08 02:48:35 +08:00
|
|
|
}
|
|
|
|
}
|
2015-08-29 02:32:53 +08:00
|
|
|
/* as a big ol' click target, don't let text inside be selected */
|
|
|
|
@include unselectable;
|
2020-05-29 14:05:21 +08:00
|
|
|
|
|
|
|
&.quick-access-profile {
|
2021-01-07 02:32:20 +08:00
|
|
|
display: inline;
|
2020-05-29 14:05:21 +08:00
|
|
|
li:not(.show-all) a {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary);
|
2020-08-11 04:17:15 +08:00
|
|
|
display: flex;
|
2020-05-29 14:05:21 +08:00
|
|
|
}
|
2021-02-19 07:47:37 +08:00
|
|
|
ul button {
|
|
|
|
line-height: 1.4; // match 'ul a' link height
|
2021-03-02 01:09:50 +08:00
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
2021-02-19 07:47:37 +08:00
|
|
|
}
|
|
|
|
@media screen and (max-height: 360px) {
|
|
|
|
// two column grid to avoid scroll
|
|
|
|
ul {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
grid-gap: 0 1em;
|
|
|
|
a {
|
|
|
|
@include ellipsis;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
span:not(.relative-date) {
|
|
|
|
@include ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
li:not(.show-all) a {
|
|
|
|
color: var(--primary);
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
}
|
2020-05-29 14:05:21 +08:00
|
|
|
}
|
2015-08-29 02:32:53 +08:00
|
|
|
}
|
2020-08-29 08:20:59 +08:00
|
|
|
}
|
2017-11-07 23:41:12 +08:00
|
|
|
|
2015-08-31 10:02:00 +08:00
|
|
|
div.menu-links-header {
|
2015-08-30 07:26:02 +08:00
|
|
|
width: 100%;
|
2015-08-31 10:02:00 +08:00
|
|
|
.menu-links-row {
|
2020-05-30 09:02:26 +08:00
|
|
|
box-sizing: border-box;
|
2018-06-20 03:38:06 +08:00
|
|
|
display: flex;
|
2020-08-29 08:20:59 +08:00
|
|
|
width: 100%;
|
2020-05-30 10:23:23 +08:00
|
|
|
z-index: 2;
|
2021-01-23 06:05:14 +08:00
|
|
|
justify-content: space-between;
|
2019-09-09 23:03:57 +08:00
|
|
|
|
2021-01-23 06:05:14 +08:00
|
|
|
.glyphs {
|
2018-06-20 03:38:06 +08:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2021-01-23 06:05:14 +08:00
|
|
|
flex-wrap: nowrap;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 0;
|
2019-09-09 23:03:57 +08:00
|
|
|
|
2021-01-23 06:05:14 +08:00
|
|
|
button {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
padding: 0.65em 0.25em 0.75em;
|
|
|
|
justify-content: center;
|
2021-03-04 01:37:40 +08:00
|
|
|
|
|
|
|
svg {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2019-09-09 23:03:57 +08:00
|
|
|
}
|
2021-01-23 06:05:14 +08:00
|
|
|
}
|
2019-09-09 23:03:57 +08:00
|
|
|
|
2021-01-23 06:05:14 +08:00
|
|
|
button {
|
|
|
|
// This is to make sure active and inactive tab icons have the same
|
|
|
|
// size. `box-sizing` does not work and I have no idea why.
|
|
|
|
border: 1px solid transparent;
|
|
|
|
&:not(.active):hover {
|
|
|
|
border-bottom: 0;
|
|
|
|
margin-top: -1px;
|
2019-09-09 23:03:57 +08:00
|
|
|
}
|
2021-01-23 06:05:14 +08:00
|
|
|
}
|
2019-09-09 23:03:57 +08:00
|
|
|
|
2021-01-23 06:05:14 +08:00
|
|
|
button.active {
|
|
|
|
border: 1px solid var(--primary-low);
|
|
|
|
border-bottom: 1px solid var(--secondary);
|
|
|
|
position: relative;
|
2019-09-09 23:03:57 +08:00
|
|
|
|
2021-01-23 06:05:14 +08:00
|
|
|
.d-icon {
|
|
|
|
color: var(--primary-high);
|
|
|
|
}
|
2020-08-29 08:20:59 +08:00
|
|
|
|
2021-01-23 06:05:14 +08:00
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background-color: inherit;
|
2018-06-08 17:49:31 +08:00
|
|
|
}
|
2018-04-14 00:53:04 +08:00
|
|
|
}
|
2015-08-31 10:02:00 +08:00
|
|
|
}
|
2021-01-23 06:05:14 +08:00
|
|
|
|
|
|
|
button:hover,
|
|
|
|
button:focus {
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--highlight-medium);
|
2018-04-14 00:53:04 +08:00
|
|
|
outline: none;
|
2015-08-30 07:26:02 +08:00
|
|
|
}
|
2021-01-23 06:05:14 +08:00
|
|
|
button {
|
2018-06-20 03:38:06 +08:00
|
|
|
padding: 0.3em 0.5em;
|
2015-08-31 10:02:00 +08:00
|
|
|
}
|
2019-09-09 23:03:57 +08:00
|
|
|
|
2021-01-23 06:05:14 +08:00
|
|
|
.glyphs {
|
2015-08-30 07:26:02 +08:00
|
|
|
display: table-cell;
|
|
|
|
width: auto;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2021-01-23 06:05:14 +08:00
|
|
|
.glyphs:first-child {
|
2015-08-30 07:26:02 +08:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2021-01-23 06:05:14 +08:00
|
|
|
.glyphs:last-child {
|
2015-08-30 07:26:02 +08:00
|
|
|
text-align: right;
|
2015-08-31 10:02:00 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
.fa,
|
2021-01-23 06:05:14 +08:00
|
|
|
button {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-med-or-secondary-med);
|
2015-08-31 10:07:30 +08:00
|
|
|
}
|
2015-08-30 07:26:02 +08:00
|
|
|
}
|