Compare commits
3 commits
d43c278d9d
...
6c528818ee
Author | SHA1 | Date | |
---|---|---|---|
6c528818ee | |||
59067b3429 | |||
e6a0ab68a5 |
4 changed files with 19 additions and 2 deletions
|
@ -202,6 +202,9 @@
|
|||
.search-button {
|
||||
margin-left: 0.5em;
|
||||
width: 3em;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -60,8 +60,7 @@
|
|||
|
||||
.SearchBar {
|
||||
display: inline-flex;
|
||||
align-items: baseline;
|
||||
vertical-align: baseline;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
|
||||
&.-expanded {
|
||||
|
@ -76,6 +75,9 @@
|
|||
.search-button {
|
||||
margin-left: 0.5em;
|
||||
width: 3em;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.search-bar-input {
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
border-bottom-left-radius: inherit;
|
||||
// create new stacking context
|
||||
position: relative;
|
||||
text-shadow: 0 0 1em var(--btn, $fallback--fg);
|
||||
}
|
||||
|
||||
.background-image {
|
||||
|
@ -184,12 +185,19 @@
|
|||
}
|
||||
}
|
||||
|
||||
.top-line {
|
||||
.button-unstyled {
|
||||
filter: drop-shadow(0 0 1em var(--btn, $fallback--fg));
|
||||
}
|
||||
}
|
||||
|
||||
.user-name {
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
flex: 1 1 auto;
|
||||
margin-right: 1em;
|
||||
font-size: 1.1em;
|
||||
text-shadow: 0 0 1em var(--btn, $fallback--fg);
|
||||
}
|
||||
|
||||
.bottom-line {
|
||||
|
@ -208,6 +216,7 @@
|
|||
overflow: hidden;
|
||||
color: $fallback--lightText;
|
||||
color: var(--lightText, $fallback--lightText);
|
||||
text-shadow: 0 0 1em var(--btn, $fallback--fg);
|
||||
}
|
||||
|
||||
.dailyAvg {
|
||||
|
@ -217,6 +226,7 @@
|
|||
font-size: 0.7em;
|
||||
color: $fallback--text;
|
||||
color: var(--text, $fallback--text);
|
||||
text-shadow: 0 0 1em var(--btn, $fallback--fg);
|
||||
}
|
||||
|
||||
.user-role {
|
||||
|
@ -235,6 +245,7 @@
|
|||
line-height: 22px;
|
||||
flex-wrap: wrap;
|
||||
justify-content: right;
|
||||
text-shadow: 0 0 1em var(--btn, $fallback--fg);
|
||||
|
||||
.following, .requested_by, .blocking {
|
||||
flex: 1 0 auto;
|
||||
|
|
|
@ -84,6 +84,7 @@
|
|||
"cRed": "#f7c4cd",
|
||||
"cGreen": "#a1e45d",
|
||||
"cOrange": "#ead15e",
|
||||
"btnToggled": "#ddd7d2",
|
||||
"alertError": "#ff2975"
|
||||
},
|
||||
"radii": {
|
||||
|
|
Loading…
Reference in a new issue