2017-01-12 17:18:21 +03:00
|
|
|
|
/**
|
2017-01-25 16:13:28 +03:00
|
|
|
|
* @copyright Copyright (c) 2016, John Molakvoæ <skjnldsv@protonmail.com>
|
|
|
|
|
* @copyright Copyright (c) 2016, Julius Haertl <jus@bitgrid.net>
|
|
|
|
|
* @copyright Copyright (c) 2016, Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
|
* @copyright Copyright (c) 2016, Jos Poortvliet <jos@opensuse.org>
|
|
|
|
|
* @copyright Copyright (c) 2016, Erik Pellikka <erik@pellikka.org>
|
|
|
|
|
* @copyright Copyright (c) 2016, jowi <sjw@gmx.ch>
|
|
|
|
|
* @copyright Copyright (c) 2015, Hendrik Leppelsack <hendrik@leppelsack.de>
|
|
|
|
|
* @copyright Copyright (c) 2015, Volker E <volker.e@temporaer.net>
|
2017-03-26 18:57:05 +03:00
|
|
|
|
* @copyright Copyright (c) 2014-2017, Jan-Christoph Borchardt <hey@jancborchardt.net>
|
2017-01-12 17:18:21 +03:00
|
|
|
|
*
|
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2016-12-22 13:16:48 +03:00
|
|
|
|
/* prevent ugly selection effect on accidental selection */
|
2017-01-12 21:49:09 +03:00
|
|
|
|
#header,
|
|
|
|
|
#navigation,
|
|
|
|
|
#expanddiv {
|
2016-12-22 13:16:48 +03:00
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
2017-01-24 09:47:14 +03:00
|
|
|
|
}
|
2017-01-26 17:50:18 +03:00
|
|
|
|
|
2016-12-22 13:16:48 +03:00
|
|
|
|
/* removed until content-focusing issue is fixed */
|
|
|
|
|
#skip-to-content a {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -10000px;
|
|
|
|
|
top: auto;
|
|
|
|
|
width: 1px;
|
|
|
|
|
height: 1px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
&:focus {
|
|
|
|
|
left: 76px;
|
|
|
|
|
top: -9px;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
color: var(--color-primary-text);
|
2016-12-22 13:16:48 +03:00
|
|
|
|
width: auto;
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* HEADERS ------------------------------------------------------------------ */
|
2017-01-12 21:49:09 +03:00
|
|
|
|
#body-user #header,
|
|
|
|
|
#body-settings #header,
|
|
|
|
|
#body-public #header {
|
2017-01-03 18:06:53 +03:00
|
|
|
|
display: inline-flex;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
z-index: 2000;
|
2018-06-26 17:47:16 +03:00
|
|
|
|
height: $header-height;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
background-color: var(--color-primary);
|
2016-12-22 13:16:48 +03:00
|
|
|
|
box-sizing: border-box;
|
2017-01-03 18:06:53 +03:00
|
|
|
|
justify-content: space-between;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* LOGO and APP NAME -------------------------------------------------------- */
|
|
|
|
|
#nextcloud {
|
2018-03-28 11:39:24 +03:00
|
|
|
|
padding: 8px 12px;
|
2018-03-27 16:47:10 +03:00
|
|
|
|
height: 100%;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
&:focus {
|
|
|
|
|
opacity: .75;
|
|
|
|
|
}
|
|
|
|
|
&:hover, &:active {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#header {
|
2017-11-07 18:25:41 +03:00
|
|
|
|
/* Header menu */
|
|
|
|
|
.menu {
|
2018-06-03 12:23:33 +03:00
|
|
|
|
background-color: var(--color-main-background);
|
2018-06-14 16:38:43 +03:00
|
|
|
|
filter: drop-shadow(0 1px 5px var(--color-box-shadow));
|
2017-11-07 18:25:41 +03:00
|
|
|
|
border-radius: 0 0 3px 3px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
z-index: 2000;
|
2017-11-09 12:58:51 +03:00
|
|
|
|
position: absolute;
|
2018-02-15 13:38:24 +03:00
|
|
|
|
max-width: 350px;
|
|
|
|
|
max-height: 280px;
|
2018-03-28 11:41:00 +03:00
|
|
|
|
right: 5px;
|
2018-06-26 17:47:16 +03:00
|
|
|
|
top: $header-height;
|
2018-03-07 13:05:23 +03:00
|
|
|
|
margin: 0;
|
2017-11-07 18:25:41 +03:00
|
|
|
|
|
2017-12-19 08:58:58 +03:00
|
|
|
|
&:not(.popovermenu) {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-07 18:25:41 +03:00
|
|
|
|
/* Dropdown arrow */
|
|
|
|
|
&:after {
|
|
|
|
|
border: 10px solid transparent;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
border-bottom-color: var(--color-main-background);
|
2017-11-07 18:25:41 +03:00
|
|
|
|
bottom: 100%;
|
|
|
|
|
content: ' ';
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
pointer-events: none;
|
2018-03-28 11:41:00 +03:00
|
|
|
|
right: 10px;
|
2017-11-07 18:25:41 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-12-22 13:16:48 +03:00
|
|
|
|
.logo {
|
2017-06-07 17:06:19 +03:00
|
|
|
|
display: inline-flex;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
background-image: var(--image-logo);
|
2016-12-22 13:16:48 +03:00
|
|
|
|
background-repeat: no-repeat;
|
2017-06-07 17:06:19 +03:00
|
|
|
|
background-size: contain;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
background-position: center;
|
2017-06-07 17:06:19 +03:00
|
|
|
|
width: 256px;
|
|
|
|
|
height: 128px;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
margin: 0 auto;
|
2017-06-07 17:06:19 +03:00
|
|
|
|
&.logo-icon {
|
|
|
|
|
width: 62px;
|
|
|
|
|
height: 34px;
|
2017-05-09 19:14:33 +03:00
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
max-height: 200px;
|
|
|
|
|
}
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
2017-06-07 17:06:19 +03:00
|
|
|
|
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
|
|
|
|
.header-appname-container {
|
2017-03-02 01:21:38 +03:00
|
|
|
|
display: none;
|
2017-01-17 11:10:09 +03:00
|
|
|
|
padding-top: 22px;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
padding-right: 10px;
|
2017-01-24 02:03:45 +03:00
|
|
|
|
flex-shrink: 0;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
2017-01-12 17:18:21 +03:00
|
|
|
|
/* show caret indicator next to logo to make clear it is tappable */
|
|
|
|
|
.icon-caret {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
margin-top: -21px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
2017-01-03 18:06:53 +03:00
|
|
|
|
|
2017-08-02 16:57:53 +03:00
|
|
|
|
#header-left, .header-left,
|
|
|
|
|
#header-right, .header-right {
|
2017-01-16 22:30:38 +03:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
2017-01-03 18:06:53 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-02 16:57:53 +03:00
|
|
|
|
#header-left, .header-left {
|
2017-01-09 16:03:13 +03:00
|
|
|
|
flex: 0 0;
|
|
|
|
|
flex-grow: 1;
|
2017-09-26 14:07:32 +03:00
|
|
|
|
white-space: nowrap;
|
2017-01-03 18:06:53 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-02 16:57:53 +03:00
|
|
|
|
#header-right, .header-right {
|
2017-01-03 18:06:53 +03:00
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
2018-02-15 13:38:24 +03:00
|
|
|
|
|
|
|
|
|
/* Right header standard */
|
|
|
|
|
.header-right {
|
|
|
|
|
> div,
|
|
|
|
|
> form {
|
2018-03-28 11:41:00 +03:00
|
|
|
|
height: 100%;
|
2018-02-15 13:38:24 +03:00
|
|
|
|
position: relative;
|
|
|
|
|
> .menutoggle {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2018-06-26 17:47:16 +03:00
|
|
|
|
width: $header-height;
|
2018-03-27 16:47:10 +03:00
|
|
|
|
height: 100%;
|
2018-02-15 13:38:24 +03:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* hover effect for app switcher label */
|
|
|
|
|
|
|
|
|
|
.header-appname-container .header-appname {
|
|
|
|
|
opacity: .75;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menutoggle {
|
|
|
|
|
.icon-caret {
|
|
|
|
|
opacity: .75;
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
|
|
|
|
.header-appname, .icon-caret {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&:focus {
|
|
|
|
|
.header-appname, .icon-caret {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&.active {
|
|
|
|
|
.header-appname, .icon-caret {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* show appname next to logo */
|
|
|
|
|
.header-appname {
|
2017-03-03 04:09:24 +03:00
|
|
|
|
display: inline-block;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
position: relative;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
color: var(--color-primary-text);
|
2016-12-22 13:16:48 +03:00
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
margin: 0;
|
2016-12-18 17:05:39 +03:00
|
|
|
|
margin-top: -26px;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
padding: 7px 0 7px 5px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* do not show menu toggle on public share links as there is no menu */
|
|
|
|
|
#body-public #header .icon-caret {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* NAVIGATION --------------------------------------------------------------- */
|
2018-03-04 17:22:49 +03:00
|
|
|
|
nav[role='navigation'] {
|
2017-03-28 16:04:56 +03:00
|
|
|
|
display: inline-block;
|
2018-06-26 17:47:16 +03:00
|
|
|
|
width: $header-height;
|
|
|
|
|
height: $header-height;
|
|
|
|
|
margin-left: -$header-height;
|
2017-03-03 15:00:10 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-13 13:10:52 +03:00
|
|
|
|
.header-left #navigation {
|
2017-03-02 01:21:38 +03:00
|
|
|
|
position: relative;
|
2018-03-28 11:41:00 +03:00
|
|
|
|
left: 25px; /* half the togglemenu */
|
2018-03-04 17:22:49 +03:00
|
|
|
|
transform: translateX(-50%);
|
2017-03-28 16:04:56 +03:00
|
|
|
|
width: 160px;
|
2017-12-13 13:10:52 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-left #navigation,
|
|
|
|
|
.ui-datepicker,
|
|
|
|
|
.ui-timepicker.ui-widget {
|
2018-06-03 12:23:33 +03:00
|
|
|
|
background-color: var(--color-main-background);
|
|
|
|
|
filter: drop-shadow(0 1px 10px var(--color-box-shadow));
|
2016-12-22 13:16:48 +03:00
|
|
|
|
&:after {
|
2017-01-24 09:47:14 +03:00
|
|
|
|
/* position of dropdown arrow */
|
2018-03-04 17:22:49 +03:00
|
|
|
|
left: 50%;
|
2016-12-18 17:05:39 +03:00
|
|
|
|
bottom: 100%;
|
|
|
|
|
border: solid transparent;
|
|
|
|
|
content: ' ';
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
border-color: rgba(0, 0, 0, 0);
|
2018-06-03 12:23:33 +03:00
|
|
|
|
border-bottom-color: var(--color-main-background);
|
2018-03-04 17:22:49 +03:00
|
|
|
|
border-width: 10px;
|
|
|
|
|
margin-left: -10px; /* border width */
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
2016-12-18 17:05:39 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#navigation {
|
|
|
|
|
box-sizing: border-box;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
li {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
a {
|
|
|
|
|
position: relative;
|
2018-03-04 18:24:14 +03:00
|
|
|
|
display: inline-flex;
|
2017-03-28 16:04:56 +03:00
|
|
|
|
padding: 10px 12px;
|
2018-03-04 18:24:14 +03:00
|
|
|
|
height: 40px;
|
|
|
|
|
align-items: center;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
span {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding-bottom: 0;
|
2017-03-28 16:04:56 +03:00
|
|
|
|
padding-left: 10px;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
color: var(--color-main-text);
|
2016-12-22 13:16:48 +03:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2017-07-14 14:23:07 +03:00
|
|
|
|
max-width: 110px;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
2017-01-12 21:49:09 +03:00
|
|
|
|
svg,
|
|
|
|
|
span {
|
2017-08-21 13:06:19 +03:00
|
|
|
|
opacity: .7;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
2017-01-12 17:18:21 +03:00
|
|
|
|
&:hover svg,
|
|
|
|
|
&:focus svg,
|
|
|
|
|
&:hover span,
|
|
|
|
|
&:focus span {
|
2016-12-22 13:16:48 +03:00
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
&.active {
|
|
|
|
|
svg, span {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-12 17:18:21 +03:00
|
|
|
|
.app-icon {
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 0;
|
|
|
|
|
max-height: 32px;
|
|
|
|
|
max-width: 32px;
|
|
|
|
|
}
|
2017-04-25 18:31:04 +03:00
|
|
|
|
|
2018-03-04 18:24:14 +03:00
|
|
|
|
/* loading feedback for apps */
|
|
|
|
|
.app-loading {
|
|
|
|
|
.icon-loading-small {
|
|
|
|
|
display: inline !important;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 12px;
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
}
|
|
|
|
|
.app-icon {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
2018-03-04 18:24:14 +03:00
|
|
|
|
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Apps management */
|
|
|
|
|
#apps {
|
|
|
|
|
max-height: calc(100vh - 100px);
|
|
|
|
|
overflow: auto;
|
2017-03-02 01:04:27 +03:00
|
|
|
|
.in-header {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2017-11-04 17:20:03 +03:00
|
|
|
|
ul {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* USER MENU -----------------------------------------------------------------*/
|
|
|
|
|
#settings {
|
2017-01-03 18:06:53 +03:00
|
|
|
|
display: inline-block;
|
2018-03-27 16:47:10 +03:00
|
|
|
|
height: 100%;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
cursor: pointer;
|
2018-02-15 13:38:24 +03:00
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
|
|
|
|
/* User menu on the right */
|
|
|
|
|
#expand {
|
|
|
|
|
opacity: 1; /* override icon opacity */
|
2018-03-28 11:41:00 +03:00
|
|
|
|
padding-right: 12px;
|
2018-02-21 11:48:07 +03:00
|
|
|
|
|
2018-02-15 13:38:24 +03:00
|
|
|
|
img {
|
|
|
|
|
opacity: .7;
|
|
|
|
|
margin-bottom: -2px;
|
|
|
|
|
}
|
|
|
|
|
&:hover,
|
|
|
|
|
&:focus,
|
|
|
|
|
&:active {
|
2018-06-03 12:23:33 +03:00
|
|
|
|
color: var(--color-primary-text);
|
2018-02-21 11:48:07 +03:00
|
|
|
|
|
|
|
|
|
img, #expandDisplayName {
|
2018-02-15 13:38:24 +03:00
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
2017-01-12 21:49:09 +03:00
|
|
|
|
}
|
2017-01-12 17:18:21 +03:00
|
|
|
|
|
2018-02-15 13:38:24 +03:00
|
|
|
|
/* Profile picture in header */
|
|
|
|
|
.avatardiv {
|
2017-01-12 17:18:21 +03:00
|
|
|
|
cursor: pointer;
|
2018-02-15 13:38:24 +03:00
|
|
|
|
height: 32px;
|
|
|
|
|
width: 32px;
|
2018-02-21 11:48:07 +03:00
|
|
|
|
|
2018-02-15 13:38:24 +03:00
|
|
|
|
img {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
/* do not show display name when profile picture is present */
|
|
|
|
|
&.avatardiv-shown + #expandDisplayName {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2017-01-12 17:18:21 +03:00
|
|
|
|
}
|
2017-03-26 18:57:05 +03:00
|
|
|
|
|
2018-02-15 13:38:24 +03:00
|
|
|
|
#expandDisplayName {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
opacity: .6;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
|
2018-02-21 11:48:07 +03:00
|
|
|
|
/* full opacity for gear icon if active */
|
|
|
|
|
#body-settings & {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-28 00:30:09 +03:00
|
|
|
|
|
2018-02-21 11:48:07 +03:00
|
|
|
|
/* show triangle below user menu if active */
|
|
|
|
|
#body-settings &:before {
|
|
|
|
|
content: ' ';
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
border: 0 solid transparent;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
border-bottom-color: var(--color-main-background);
|
2018-02-21 11:48:07 +03:00
|
|
|
|
border-width: 10px;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
z-index: 100;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-27 20:53:44 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-29 17:10:53 +03:00
|
|
|
|
/* Settings menu */
|
2016-12-22 13:16:48 +03:00
|
|
|
|
#expanddiv {
|
2018-03-28 11:47:07 +03:00
|
|
|
|
&.menu {
|
|
|
|
|
right: 17px;
|
|
|
|
|
}
|
2016-12-22 13:16:48 +03:00
|
|
|
|
a {
|
2018-02-15 13:38:24 +03:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
height: 40px;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
color: var(--color-main-text);
|
2018-02-15 13:38:24 +03:00
|
|
|
|
padding: 12px;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
box-sizing: border-box;
|
2017-08-21 13:06:19 +03:00
|
|
|
|
opacity: .7;
|
2018-02-21 11:48:07 +03:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
|
|
.icon-loading-small {
|
|
|
|
|
margin-right: 9px;
|
|
|
|
|
background-size: 16px 16px;
|
|
|
|
|
}
|
2016-12-22 13:16:48 +03:00
|
|
|
|
img {
|
2018-02-15 13:38:24 +03:00
|
|
|
|
margin-right: 9px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
width: 16px;
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
2017-01-12 21:49:09 +03:00
|
|
|
|
&:hover,
|
|
|
|
|
&:focus,
|
|
|
|
|
&:active,
|
|
|
|
|
&.active {
|
2016-12-22 13:16:48 +03:00
|
|
|
|
opacity: 1;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
box-shadow: inset 4px 0 var(--color-primary);
|
2016-12-22 13:16:48 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-12-18 17:05:39 +03:00
|
|
|
|
|
2018-06-29 17:10:53 +03:00
|
|
|
|
/* Apps menu */
|
2016-12-18 17:05:39 +03:00
|
|
|
|
#appmenu {
|
2018-06-26 17:47:16 +03:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
min-width: $header-height;
|
2016-12-18 17:05:39 +03:00
|
|
|
|
|
2017-03-03 04:09:24 +03:00
|
|
|
|
li {
|
2017-03-28 16:04:56 +03:00
|
|
|
|
position: relative;
|
2017-03-27 21:24:28 +03:00
|
|
|
|
cursor: pointer;
|
2016-12-18 17:05:39 +03:00
|
|
|
|
|
2017-03-03 04:09:24 +03:00
|
|
|
|
a {
|
2017-04-07 21:58:53 +03:00
|
|
|
|
position: relative;
|
2018-06-26 17:47:16 +03:00
|
|
|
|
display: flex;
|
2017-03-03 04:09:24 +03:00
|
|
|
|
margin: 0;
|
2018-06-26 17:47:16 +03:00
|
|
|
|
height: $header-height;
|
|
|
|
|
width: $header-height;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2017-04-07 21:58:53 +03:00
|
|
|
|
opacity: .6;
|
2017-03-03 04:09:24 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-03-04 18:24:14 +03:00
|
|
|
|
.app-loading {
|
|
|
|
|
> svg {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.icon-loading-small-dark {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
display: block !important;
|
|
|
|
|
}
|
2017-04-25 18:31:04 +03:00
|
|
|
|
}
|
2016-12-18 17:05:39 +03:00
|
|
|
|
|
2018-06-24 20:11:51 +03:00
|
|
|
|
/* focused app visual feedback */
|
2017-03-03 04:09:24 +03:00
|
|
|
|
li:hover a,
|
2017-09-29 21:01:15 +03:00
|
|
|
|
li a:focus,
|
2017-03-03 04:09:24 +03:00
|
|
|
|
li a.active {
|
|
|
|
|
opacity: 1;
|
2018-06-25 18:19:40 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li:hover a,
|
|
|
|
|
li a:focus {
|
2018-06-24 20:11:51 +03:00
|
|
|
|
+ span {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
2017-03-03 04:09:24 +03:00
|
|
|
|
}
|
2016-12-18 17:05:39 +03:00
|
|
|
|
|
2018-06-24 20:11:51 +03:00
|
|
|
|
li:hover span,
|
|
|
|
|
li:focus span {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* hidden apps menu */
|
2017-03-03 04:09:24 +03:00
|
|
|
|
li img,
|
|
|
|
|
.icon-more-white {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
2016-12-18 17:05:39 +03:00
|
|
|
|
|
2018-06-24 20:11:51 +03:00
|
|
|
|
/* app title popup */
|
2017-03-03 04:09:24 +03:00
|
|
|
|
li span {
|
|
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
overflow: visible;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
background-color: var(--color-main-background);
|
2017-03-03 04:09:24 +03:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
border: none;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
border-radius: var(--border-radius);
|
2017-03-03 04:09:24 +03:00
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
|
border-top-right-radius: 0;
|
2018-06-05 17:06:01 +03:00
|
|
|
|
color: var(--color-text-lighter);
|
2017-03-03 04:09:24 +03:00
|
|
|
|
width: auto;
|
|
|
|
|
left: 50%;
|
2018-01-04 14:23:04 +03:00
|
|
|
|
top: 100%;
|
2017-03-03 04:09:24 +03:00
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
padding: 4px 10px;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
filter: drop-shadow(0 1px 10px var(--color-box-shadow));
|
2018-01-04 14:33:10 +03:00
|
|
|
|
z-index: 100;
|
2017-03-03 04:09:24 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-27 20:36:11 +03:00
|
|
|
|
/* show triangle below active app */
|
2018-06-24 20:11:51 +03:00
|
|
|
|
li a::before {
|
2017-03-03 04:09:24 +03:00
|
|
|
|
content: ' ';
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
border: 0 solid transparent;
|
2018-06-03 12:23:33 +03:00
|
|
|
|
border-bottom-color: var(--color-main-background);
|
2017-03-03 04:09:24 +03:00
|
|
|
|
border-width: 10px;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
left: 50%;
|
2017-04-07 21:58:53 +03:00
|
|
|
|
bottom: 0;
|
2017-08-11 12:04:22 +03:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
2018-06-24 20:11:51 +03:00
|
|
|
|
/* triangle focus feedback */
|
|
|
|
|
li a.active::before,
|
|
|
|
|
li:hover a::before,
|
|
|
|
|
li:hover a.active::before,
|
|
|
|
|
li a:focus::before {
|
2017-03-03 04:09:24 +03:00
|
|
|
|
display: block;
|
|
|
|
|
}
|
2018-06-24 20:11:51 +03:00
|
|
|
|
li a.active::before {
|
2018-01-04 14:33:10 +03:00
|
|
|
|
z-index: 99;
|
|
|
|
|
}
|
2018-06-24 20:11:51 +03:00
|
|
|
|
li:hover a::before,
|
|
|
|
|
li:hover a::before,
|
|
|
|
|
li a.active:hover::before,
|
|
|
|
|
li a:focus::before {
|
2018-01-04 14:33:10 +03:00
|
|
|
|
z-index: 101;
|
|
|
|
|
}
|
2018-06-24 20:11:51 +03:00
|
|
|
|
&.menu-open li:hover a::before,
|
|
|
|
|
&.menu-open li a.active::before,
|
2017-03-03 15:16:30 +03:00
|
|
|
|
&.menu-open li:hover span {
|
2017-03-03 04:09:24 +03:00
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
2016-12-18 17:05:39 +03:00
|
|
|
|
|
2017-03-03 15:00:37 +03:00
|
|
|
|
li.hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2017-05-08 16:08:30 +03:00
|
|
|
|
}
|
2018-06-26 13:37:33 +03:00
|
|
|
|
|
|
|
|
|
/* Skip navigation links – show only on keyboard focus */
|
|
|
|
|
.skip-navigation {
|
|
|
|
|
padding: 11px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
top: -999px;
|
|
|
|
|
left: 3px;
|
|
|
|
|
/* Force primary color, otherwise too light focused color */
|
|
|
|
|
background: var(--color-primary) !important;
|
|
|
|
|
|
|
|
|
|
&.skip-content {
|
|
|
|
|
left: 253px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
|
&:active {
|
2018-06-26 17:47:16 +03:00
|
|
|
|
top: $header-height;
|
2018-06-26 13:37:33 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-06-29 17:10:53 +03:00
|
|
|
|
|
|
|
|
|
/* SEARCHBOX --------------------------------------------------------------- */
|
|
|
|
|
.searchbox {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
input[type='search'] {
|
|
|
|
|
position: relative;
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
padding: 3px;
|
|
|
|
|
padding-left: 25px;
|
|
|
|
|
padding-right: 20px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
color: var(--color-primary-text);
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
|
height: 34px;
|
|
|
|
|
width: 0;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
-webkit-transition: all 100ms;
|
|
|
|
|
transition: all 100ms;
|
|
|
|
|
opacity: .6;
|
|
|
|
|
&:focus, &:active, &:valid {
|
|
|
|
|
background-position-x: 6px;
|
|
|
|
|
color: var(--color-primary-text);
|
|
|
|
|
width: 155px;
|
|
|
|
|
cursor: text;
|
|
|
|
|
background-color: var(--color-primary) !important;
|
|
|
|
|
border: 1px solid var(--color-primary-text-dark) !important;
|
|
|
|
|
}
|
|
|
|
|
&:hover, &:focus, &:active {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
& ~ .icon-close-white {
|
|
|
|
|
display: inline;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
&, &:focus, &:active, &:hover {
|
|
|
|
|
border: none;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&:not(:valid) ~ .icon-close-white {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
&::-webkit-search-cancel-button {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|