akkoma-fe/src/App.scss

873 lines
16 KiB
SCSS
Raw Normal View History

@import './_variables.scss';
2016-11-05 10:01:17 +00:00
#app {
min-height: 100vh;
max-width: 100%;
overflow: hidden;
2016-10-26 17:03:55 +00:00
}
2019-02-03 20:32:24 +00:00
.app-bg-wrapper {
position: fixed;
z-index: -1;
height: 100%;
left: 0;
right: -20px;
2019-02-03 20:32:24 +00:00
background-size: cover;
background-repeat: no-repeat;
background-position: 0 50%;
}
2019-09-13 17:16:05 +00:00
i[class^='icon-'] {
2017-11-02 09:27:52 +00:00
user-select: none;
}
2016-10-26 17:03:55 +00:00
h4 {
margin: 0;
2016-10-26 17:03:55 +00:00
}
#content {
box-sizing: border-box;
padding-top: 60px;
margin: auto;
min-height: 100vh;
max-width: 980px;
background-color: rgba(0,0,0,0.15);
align-content: flex-start;
2016-10-26 17:03:55 +00:00
}
.text-center {
text-align: center;
2016-10-26 17:03:55 +00:00
}
html {
font-size: 14px;
}
2016-10-26 17:03:55 +00:00
body {
font-family: sans-serif;
2018-11-25 18:48:16 +00:00
font-family: var(--interfaceFont, sans-serif);
margin: 0;
2018-10-07 16:59:22 +00:00
color: $fallback--text;
color: var(--text, $fallback--text);
max-width: 100vw;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
&.hidden {
display: none;
}
2016-10-26 17:03:55 +00:00
}
a {
text-decoration: none;
color: $fallback--link;
color: var(--link, $fallback--link);
2016-10-26 17:03:55 +00:00
}
2018-08-28 13:14:32 +00:00
button {
user-select: none;
2018-10-07 16:59:22 +00:00
color: $fallback--text;
color: var(--btnText, $fallback--text);
background-color: $fallback--fg;
background-color: var(--btn, $fallback--fg);
border: none;
border-radius: $fallback--btnRadius;
border-radius: var(--btnRadius, $fallback--btnRadius);
cursor: pointer;
2018-11-22 21:30:28 +00:00
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 1), 0px 1px 0px 0px rgba(255, 255, 255, 0.2) inset, 0px -1px 0px 0px rgba(0, 0, 0, 0.2) inset;
box-shadow: var(--buttonShadow);
font-size: 14px;
font-family: sans-serif;
2018-11-25 18:48:16 +00:00
font-family: var(--interfaceFont, sans-serif);
2018-11-20 19:14:49 +00:00
i[class*=icon-] {
color: $fallback--text;
color: var(--btnText, $fallback--text);
}
2018-08-28 13:20:04 +00:00
&::-moz-focus-inner {
border: none;
}
&:hover {
box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.3);
box-shadow: var(--buttonHoverShadow);
}
2018-08-28 13:20:04 +00:00
&:active {
2018-11-22 21:30:28 +00:00
box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.3), 0px 1px 0px 0px rgba(0, 0, 0, 0.2) inset, 0px -1px 0px 0px rgba(255, 255, 255, 0.2) inset;
box-shadow: var(--buttonPressedShadow);
2018-08-28 13:20:04 +00:00
}
&:disabled {
cursor: not-allowed;
opacity: 0.5;
}
&.pressed {
color: $fallback--faint;
color: var(--faint, $fallback--faint);
background-color: $fallback--bg;
background-color: var(--bg, $fallback--bg)
}
2019-02-18 14:49:32 +00:00
&.danger {
// TODO: add better color variable
color: $fallback--text;
color: var(--alertErrorPanelText, $fallback--text);
background-color: $fallback--alertError;
background-color: var(--alertError, $fallback--alertError);
}
2017-02-18 07:48:35 +00:00
}
label.select {
padding: 0;
}
input, textarea, .select {
border: none;
2018-04-15 04:25:59 +00:00
border-radius: $fallback--inputRadius;
border-radius: var(--inputRadius, $fallback--inputRadius);
2018-11-22 21:30:28 +00:00
box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.2) inset, 0px -1px 0px 0px rgba(255, 255, 255, 0.2) inset, 0px 0px 2px 0px rgba(0, 0, 0, 1) inset;
box-shadow: var(--inputShadow);
2018-10-07 16:59:22 +00:00
background-color: $fallback--fg;
background-color: var(--input, $fallback--fg);
color: $fallback--lightText;
color: var(--inputText, $fallback--lightText);
font-family: sans-serif;
2018-11-25 18:48:16 +00:00
font-family: var(--inputFont, sans-serif);
font-size: 14px;
2019-06-17 17:48:54 +00:00
margin: 0;
2018-11-25 21:19:28 +00:00
padding: 8px .5em;
box-sizing: border-box;
display: inline-block;
position: relative;
2018-12-11 13:37:03 +00:00
height: 28px;
line-height: 16px;
2018-08-30 15:23:43 +00:00
hyphens: none;
&:disabled, &[disabled=disabled] {
cursor: not-allowed;
opacity: 0.5;
}
.icon-down-open {
position: absolute;
top: 0;
bottom: 0;
right: 5px;
height: 100%;
2018-10-07 16:59:22 +00:00
color: $fallback--text;
color: var(--text, $fallback--text);
2018-12-11 13:37:03 +00:00
line-height: 28px;
z-index: 0;
pointer-events: none;
}
select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: transparent;
border: none;
2018-10-07 16:59:22 +00:00
color: $fallback--text;
color: var(--inputText, --text, $fallback--text);
margin: 0;
2018-11-25 21:19:28 +00:00
padding: 0 2em 0 .2em;
font-family: sans-serif;
font-family: var(--inputFont, sans-serif);
font-size: 14px;
width: 100%;
z-index: 1;
2018-12-11 13:37:03 +00:00
height: 28px;
line-height: 16px;
}
2018-11-20 19:14:49 +00:00
&[type=range] {
background: none;
border: none;
margin: 0;
box-shadow: none;
flex: 1;
}
2019-06-18 20:28:31 +00:00
&[type=radio] {
display: none;
&:checked + label::before {
box-shadow: 0px 0px 2px black inset, 0px 0px 0px 4px $fallback--fg inset;
box-shadow: var(--inputShadow), 0px 0px 0px 4px var(--fg, $fallback--fg) inset;
background-color: var(--link, $fallback--link);
}
&:disabled {
&,
& + label,
& + label::before {
opacity: .5;
}
}
+ label::before {
2019-06-20 13:00:10 +00:00
flex-shrink: 0;
2019-06-18 20:28:31 +00:00
display: inline-block;
content: '';
transition: box-shadow 200ms;
width: 1.1em;
height: 1.1em;
border-radius: 100%; // Radio buttons should always be circle
box-shadow: 0px 0px 2px black inset;
box-shadow: var(--inputShadow);
margin-right: .5em;
background-color: $fallback--fg;
background-color: var(--input, $fallback--fg);
vertical-align: top;
text-align: center;
line-height: 1.1em;
font-size: 1.1em;
box-sizing: border-box;
color: transparent;
overflow: hidden;
box-sizing: border-box;
}
}
&[type=checkbox] {
display: none;
&:checked + label::before {
2018-10-07 16:59:22 +00:00
color: $fallback--text;
color: var(--text, $fallback--text);
}
&:disabled {
&,
& + label,
& + label::before {
opacity: .5;
}
}
+ label::before {
2019-06-20 13:00:10 +00:00
flex-shrink: 0;
display: inline-block;
content: '';
transition: color 200ms;
width: 1.1em;
height: 1.1em;
2018-11-23 04:28:53 +00:00
border-radius: $fallback--checkboxRadius;
border-radius: var(--checkboxRadius, $fallback--checkboxRadius);
box-shadow: 0px 0px 2px black inset;
box-shadow: var(--inputShadow);
margin-right: .5em;
2018-10-07 16:59:22 +00:00
background-color: $fallback--fg;
background-color: var(--input, $fallback--fg);
vertical-align: top;
text-align: center;
line-height: 1.1em;
font-size: 1.1em;
box-sizing: border-box;
color: transparent;
overflow: hidden;
box-sizing: border-box;
}
}
}
option {
2018-10-07 16:59:22 +00:00
color: $fallback--text;
color: var(--text, $fallback--text);
background-color: $fallback--bg;
background-color: var(--bg, $fallback--bg);
}
2019-06-18 20:28:31 +00:00
.hide-number-spinner {
-moz-appearance: textfield;
&[type=number]::-webkit-inner-spin-button,
&[type=number]::-webkit-outer-spin-button {
opacity: 0;
display: none;
}
}
2018-04-07 13:29:50 +00:00
i[class*=icon-] {
color: $fallback--icon;
color: var(--icon, $fallback--icon)
}
2019-04-26 07:33:25 +00:00
.btn-block {
display: block;
width: 100%;
}
.btn-group {
position: relative;
display: inline-flex;
vertical-align: middle;
button {
position: relative;
flex: 1 1 auto;
&:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
&:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
}
}
2016-10-26 17:03:55 +00:00
.container {
display: flex;
flex-wrap: wrap;
margin: 0;
padding: 0 10px 0 10px;
2016-10-26 17:03:55 +00:00
}
.item {
flex: 1;
2018-04-08 00:43:07 +00:00
line-height: 50px;
height: 50px;
overflow: hidden;
2018-12-05 12:01:56 +00:00
display: flex;
flex-wrap: wrap;
.nav-icon {
margin-left: 0.4em;
}
2016-10-26 17:03:55 +00:00
2018-12-05 12:01:56 +00:00
&.right {
2018-12-14 11:35:56 +00:00
justify-content: flex-end;
2018-12-05 12:01:56 +00:00
}
2016-10-26 17:03:55 +00:00
}
.auto-size {
flex: 1
2016-10-26 17:03:55 +00:00
}
2018-12-18 18:26:14 +00:00
.nav-bar {
padding: 0;
width: 100%;
align-items: center;
position: fixed;
height: 50px;
box-sizing: border-box;
.logo {
display: flex;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
align-items: stretch;
justify-content: center;
flex: 0 0 auto;
z-index: -1;
transition: opacity;
transition-timing-function: ease-out;
transition-duration: 100ms;
.mask {
mask-repeat: no-repeat;
mask-position: center;
mask-size: contain;
background-color: $fallback--fg;
background-color: var(--topBarText, $fallback--fg);
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
img {
height: 100%;
object-fit: contain;
display: block;
flex: 0;
}
}
.inner-nav {
position: relative;
2018-12-18 18:26:14 +00:00
margin: auto;
box-sizing: border-box;
padding-left: 10px;
padding-right: 10px;
display: flex;
2016-10-26 17:03:55 +00:00
align-items: center;
flex-basis: 970px;
2016-10-26 17:03:55 +00:00
height: 50px;
2018-10-07 16:59:22 +00:00
a, a i {
color: $fallback--link;
2018-10-07 16:59:22 +00:00
color: var(--topBarLink, $fallback--link);
}
}
2016-10-26 17:03:55 +00:00
}
main-router {
flex: 1;
2016-10-26 17:03:55 +00:00
}
.status.compact {
color: rgba(0, 0, 0, 0.42);
font-weight: 300;
2016-10-26 17:03:55 +00:00
p {
margin: 0;
font-size: 0.8em
}
2016-10-26 17:03:55 +00:00
}
/* Panel */
.panel {
display: flex;
position: relative;
flex-direction: column;
margin: 0.5em;
2016-10-26 17:03:55 +00:00
background-color: $fallback--bg;
background-color: var(--bg, $fallback--bg);
&::after, & {
border-radius: $fallback--panelRadius;
border-radius: var(--panelRadius, $fallback--panelRadius);
}
&::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
pointer-events: none;
box-shadow: 1px 1px 4px rgba(0,0,0,.6);
box-shadow: var(--panelShadow);
}
}
.panel-body:empty::before {
content: "¯\\_(ツ)_/¯"; // Could use words but it'd require translations
display: block;
margin: 1em;
text-align: center;
2016-10-26 17:03:55 +00:00
}
.panel-heading {
2018-08-28 13:14:32 +00:00
display: flex;
2019-03-22 18:19:50 +00:00
flex: none;
border-radius: $fallback--panelRadius $fallback--panelRadius 0 0;
border-radius: var(--panelRadius, $fallback--panelRadius) var(--panelRadius, $fallback--panelRadius) 0 0;
background-size: cover;
2018-08-28 13:14:32 +00:00
padding: .6em .6em;
text-align: left;
line-height: 28px;
color: var(--panelText);
2018-10-07 16:59:22 +00:00
background-color: $fallback--fg;
background-color: var(--panel, $fallback--fg);
2018-08-28 13:14:32 +00:00
align-items: baseline;
box-shadow: var(--panelHeaderShadow);
2018-08-28 13:14:32 +00:00
.title {
flex: 1 0 auto;
font-size: 1.3em;
}
2018-11-26 00:19:04 +00:00
.faint {
background-color: transparent;
color: $fallback--faint;
color: var(--panelFaint, $fallback--faint);
}
.alert {
white-space: nowrap;
text-overflow: ellipsis;
overflow-x: hidden;
2018-08-28 13:14:32 +00:00
}
button {
flex-shrink: 0;
}
button, .alert {
// height: 100%;
line-height: 21px;
min-height: 0;
box-sizing: border-box;
margin: 0;
margin-left: .25em;
min-width: 1px;
align-self: stretch;
2018-08-28 13:14:32 +00:00
}
a {
color: $fallback--link;
color: var(--panelLink, $fallback--link)
}
2016-10-26 17:03:55 +00:00
}
.panel-heading.stub {
border-radius: $fallback--panelRadius;
border-radius: var(--panelRadius, $fallback--panelRadius);
}
2016-10-26 17:03:55 +00:00
.panel-footer {
border-radius: 0 0 $fallback--panelRadius $fallback--panelRadius;
border-radius: 0 0 var(--panelRadius, $fallback--panelRadius) var(--panelRadius, $fallback--panelRadius);
.faint {
color: $fallback--faint;
color: var(--panelFaint, $fallback--faint);
}
a {
color: $fallback--link;
color: var(--panelLink, $fallback--link)
}
2016-10-26 17:03:55 +00:00
}
.panel-body > p {
line-height: 18px;
padding: 1em;
margin: 0;
2016-10-26 17:03:55 +00:00
}
.container > * {
min-width: 0px;
2016-10-26 17:03:55 +00:00
}
.fa {
color: grey;
2016-10-26 17:03:55 +00:00
}
2016-11-03 16:28:44 +00:00
nav {
z-index: 1000;
color: var(--topBarText);
2018-10-07 16:59:22 +00:00
background-color: $fallback--fg;
background-color: var(--topBar, $fallback--fg);
color: $fallback--faint;
color: var(--faint, $fallback--faint);
box-shadow: 0px 0px 4px rgba(0,0,0,.6);
box-shadow: var(--topBarShadow);
2016-11-03 16:28:44 +00:00
}
2016-11-28 13:35:21 +00:00
.fade-enter-active, .fade-leave-active {
transition: opacity .2s
}
.fade-enter, .fade-leave-active {
opacity: 0
}
2016-12-02 13:33:03 +00:00
.main {
2019-01-26 15:45:03 +00:00
flex-basis: 50%;
flex-grow: 1;
flex-shrink: 1;
2016-12-02 13:33:03 +00:00
}
2017-01-17 16:27:39 +00:00
.sidebar-bounds {
flex: 0;
flex-basis: 35%;
2017-01-17 16:27:39 +00:00
}
.sidebar-flexer {
flex: 1;
flex-basis: 345px;
width: 365px;
}
2017-01-17 16:27:39 +00:00
.mobile-shown {
display: none;
2017-01-17 16:27:39 +00:00
}
2019-01-26 15:45:03 +00:00
@media all and (min-width: 800px) {
body {
overflow-y: scroll;
}
2018-12-05 12:01:56 +00:00
.sidebar-bounds {
overflow: hidden;
max-height: 100vh;
width: 345px;
position: fixed;
margin-top: -10px;
.sidebar-scroller {
height: 96vh;
width: 365px;
padding-top: 10px;
padding-right: 50px;
overflow-x: hidden;
overflow-y: scroll;
}
.sidebar {
width: 345px;
}
}
.sidebar-flexer {
max-height: 96vh;
flex-shrink: 0;
flex-grow: 0;
}
}
2018-11-26 00:19:04 +00:00
.badge {
display: inline-block;
border-radius: 99px;
min-width: 22px;
max-width: 22px;
min-height: 22px;
max-height: 22px;
font-size: 15px;
line-height: 22px;
text-align: center;
vertical-align: middle;
white-space: nowrap;
padding: 0;
&.badge-notification {
background-color: $fallback--cRed;
background-color: var(--badgeNotification, $fallback--cRed);
color: white;
color: var(--badgeNotificationText, white);
}
}
.alert {
margin: 0.35em;
padding: 0.25em;
border-radius: $fallback--tooltipRadius;
border-radius: var(--tooltipRadius, $fallback--tooltipRadius);
min-height: 28px;
line-height: 28px;
&.error {
2018-11-13 13:30:01 +00:00
background-color: $fallback--alertError;
background-color: var(--alertError, $fallback--alertError);
color: $fallback--text;
color: var(--alertErrorText, $fallback--text);
.panel-heading & {
color: $fallback--text;
color: var(--alertErrorPanelText, $fallback--text);
}
}
&.warning {
background-color: $fallback--alertWarning;
background-color: var(--alertWarning, $fallback--alertWarning);
color: $fallback--text;
color: var(--alertWarningText, $fallback--text);
.panel-heading & {
color: $fallback--text;
color: var(--alertWarningPanelText, $fallback--text);
}
}
}
.faint {
color: $fallback--faint;
2018-04-10 19:12:59 +00:00
color: var(--faint, $fallback--faint);
}
.faint-link {
color: $fallback--faint;
color: var(--faint, $fallback--faint);
&:hover {
text-decoration: underline;
}
}
2019-01-26 15:45:03 +00:00
@media all and (min-width: 800px) {
.logo {
opacity: 1 !important;
}
}
2018-12-18 18:26:14 +00:00
.item.right {
text-align: right;
2017-01-17 16:27:39 +00:00
}
2017-02-16 21:25:41 +00:00
.visibility-notice {
padding: .5em;
border: 1px solid $fallback--faint;
border: 1px solid var(--faint, $fallback--faint);
border-radius: $fallback--inputRadius;
border-radius: var(--inputRadius, $fallback--inputRadius);
}
2018-12-18 18:26:14 +00:00
.notice-dismissible {
padding-right: 4rem;
position: relative;
.dismiss {
position: absolute;
top: 0;
right: 0;
padding: .5em;
color: inherit;
}
}
.button-icon {
font-size: 1.2em;
}
@keyframes shakeError {
0% {
transform: translateX(0);
}
15% {
transform: translateX(0.375rem);
}
30% {
transform: translateX(-0.375rem);
}
45% {
transform: translateX(0.375rem);
}
60% {
transform: translateX(-0.375rem);
}
75% {
transform: translateX(0.375rem);
}
90% {
transform: translateX(-0.375rem);
}
100% {
transform: translateX(0);
}
}
2019-01-26 15:45:03 +00:00
@media all and (max-width: 800px) {
2018-12-18 18:26:14 +00:00
.mobile-hidden {
display: none;
}
.panel-switcher {
display: flex;
}
.container {
padding: 0;
}
.panel {
margin: 0.5em 0 0.5em 0;
}
.menu-button {
display: block;
margin-right: 0.8em;
}
2018-12-18 18:26:14 +00:00
}
2019-02-06 10:01:32 +00:00
.setting-item {
border-bottom: 2px solid var(--fg, $fallback--fg);
margin: 1em 1em 1.4em;
padding-bottom: 1.4em;
> div {
margin-bottom: .5em;
&:last-child {
margin-bottom: 0;
}
}
&:last-child {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 1em;
}
select {
min-width: 10em;
}
textarea {
width: 100%;
max-width: 100%;
height: 100px;
}
.unavailable,
.unavailable i {
color: var(--cRed, $fallback--cRed);
color: $fallback--cRed;
}
.btn {
min-height: 28px;
min-width: 10em;
padding: 0 2em;
}
.number-input {
max-width: 6em;
}
}
.select-multiple {
display: flex;
.option-list {
margin: 0;
padding-left: .5em;
}
}
.setting-list,
.option-list{
list-style-type: none;
padding-left: 2em;
li {
margin-bottom: 0.5em;
}
.suboptions {
margin-top: 0.3em
}
}
2019-02-06 10:01:32 +00:00
.login-hint {
text-align: center;
2019-03-02 14:57:32 +00:00
2019-02-06 10:01:32 +00:00
@media all and (min-width: 801px) {
display: none;
}
a {
display: inline-block;
padding: 1em 0px;
width: 100%;
}
}
2019-02-12 16:00:09 +00:00
.btn.btn-default {
min-height: 28px;
}
2019-12-03 16:16:38 +00:00
.animate-spin {
animation: spin 2s infinite linear;
display: inline-block;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}