123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693 |
- /**
- * @copyright Copyright (c) 2016, John Molakvoæ <skjnldsv@protonmail.com>
- * @copyright Copyright (c) 2016, Julius Haertl <jus@bitgrid.net>
- * @copyright Copyright (c) 2016, Morris Jobke <hey@morrisjobke.de>
- * @copyright Copyright (c) 2016, pgys <info@pexlab.space>
- * @copyright Copyright (c) 2016, Lukas Reschke <lukas@statuscode.ch>
- * @copyright Copyright (c) 2016, Stefan Weil <sw@weilnetz.de>
- * @copyright Copyright (c) 2016, Roeland Jago Douma <rullzer@owncloud.com>
- * @copyright Copyright (c) 2016, jowi <sjw@gmx.ch>
- * @copyright Copyright (c) 2015, Hendrik Leppelsack <hendrik@leppelsack.de>
- * @copyright Copyright (c) 2015, Jan-Christoph Borchardt <hey@jancborchardt.net>
- * @copyright Copyright (c) 2015, Thomas Müller <thomas.mueller@tmit.eu>
- * @copyright Copyright (c) 2015, Vincent Petry <pvince81@owncloud.com>
- *
- * @license GNU AGPL version 3 or any later version
- *
- */
- /* HEADING STYLING ---------------------------------------------------------- */
- h2 {
- font-size: 20px;
- font-weight: 300;
- margin-bottom: 12px;
- line-height: 140%;
- }
- h3 {
- font-size: 15px;
- font-weight: 300;
- margin: 12px 0;
- }
- /* do not use italic typeface style, instead lighter color */
- em {
- font-style: normal;
- -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)';
- opacity: .5;
- }
- /* APP STYLING -------------------------------------------------------------- */
- #app {
- height: 100%;
- width: 100%;
- * {
- box-sizing: border-box;
- }
- }
- /* APP-NAVIGATION ------------------------------------------------------------*/
- /* Navigation: folder like structure */
- #app-navigation {
- width: 250px;
- height: 100%;
- float: left;
- box-sizing: border-box;
- background-color: #fff;
- padding-bottom: 44px;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- border-right: 1px solid #eee;
- display: flex;
- flex-direction: column;
- > ul {
- position: relative;
- height: 100%;
- width: inherit;
- overflow: auto;
- box-sizing: border-box;
- > li {
- &:focus,
- &:hover,
- &.active,
- a.selected {
- &,
- > a {
- opacity: 1;
- box-shadow: inset 2px 0 #0082c9;
- }
- }
- }
- }
- li {
- position: relative;
- width: 100%;
- box-sizing: border-box;
- }
- &.without-app-settings {
- padding-bottom: 0;
- }
- .active.with-menu > a,
- .with-counter > a {
- padding-right: 50px;
- }
- .active.with-menu.with-counter > a {
- padding-right: 90px;
- }
- .with-icon a,
- .app-navigation-entry-loading a {
- padding-left: 44px;
- background-size: 16px 16px;
- background-position: 14px center;
- background-repeat: no-repeat;
- }
- li > a {
- display: block;
- width: 100%;
- line-height: 44px;
- min-height: 44px;
- padding: 0 12px;
- overflow: hidden;
- box-sizing: border-box;
- white-space: nowrap;
- text-overflow: ellipsis;
- color: #000;
- opacity: .57;
- }
- li > a:first-child img {
- margin-bottom: -3px;
- margin-right: 11px;
- width: 16px;
- margin-left: 2px;
- }
- .collapse {
- display: none;
- /* hide collapse button initially */
- }
- .collapsible {
- > .collapse {
- position: absolute;
- height: 44px;
- width: 44px;
- margin: 0;
- padding: 0;
- background: none;
- background-image: url('../img/actions/triangle-s.svg?v=1');
- background-size: 16px;
- background-repeat: no-repeat;
- background-position: center;
- border: none;
- border-radius: 0;
- outline: none !important;
- box-shadow: none;
- }
- &:hover > a,
- &:focus > a {
- background-image: none;
- }
- &:hover,
- &:focus {
- > .collapse {
- display: block;
- }
- }
- .collapse {
- -webkit-transform: rotate(-90deg);
- -ms-transform: rotate(-90deg);
- transform: rotate(-90deg);
- }
- &.open {
- .collapse {
- -webkit-transform: rotate(0);
- -ms-transform: rotate(0);
- transform: rotate(0);
- }
- background-image: linear-gradient(top, rgb(238, 238, 238) 0%, rgb(245, 245, 245) 100%);
- background-image: -webkit-linear-gradient(top, rgb(238, 238, 238) 0%, rgb(245, 245, 245) 100%);
- background-image: -ms-linear-gradient(top, rgb(238, 238, 238) 0%, rgb(245, 245, 245) 100%);
- }
- }
- > {
- /* Second level nesting for lists */
- ul ul {
- display: none;
- li > a {
- padding-left: 32px;
- }
- }
- .with-icon ul li {
- > a,
- &.app-navigation-entry-loading > a {
- padding-left: 68px;
- background-position: 44px center;
- }
- }
- }
- > ul .collapsible.open {
- &:hover,
- &:focus {
- box-shadow: inset 0 0 3px #ddd;
- }
- ul {
- display: block;
- }
- }
- /* Deleted entries with undo button */
- .app-navigation-entry-deleted {
- display: inline-block;
- height: 44px;
- width: 100%;
- }
- .app-navigation-entry-deleted-description {
- padding-left: 12px;
- position: relative;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- display: inline-block;
- width: calc(100% - 49px);
- line-height: 44px;
- float: left;
- }
- .app-navigation-entry-deleted-button {
- margin: 0;
- height: 44px;
- width: 44px;
- line-height: 44px;
- border: 0;
- display: inline-block;
- background-color: transparent;
- opacity: .5;
- &:hover, &:focus {
- opacity: 1;
- }
- }
- /* counter and actions, legacy code */
- .utils {
- position: absolute;
- padding: 7px 7px 0 0;
- right: 0;
- top: 0;
- bottom: 0;
- font-size: 12px;
- button,
- .counter {
- width: 44px;
- height: 44px;
- padding-top: 12px;
- }
- }
- /* drag and drop */
- .drag-and-drop {
- -webkit-transition: padding-bottom 500ms ease 0s;
- transition: padding-bottom 500ms ease 0s;
- padding-bottom: 40px;
- }
- .error {
- color: #dd1144;
- }
- .app-navigation-separator {
- border-bottom: 1px solid #ddd;
- }
- /**
- * App navigation utils, buttons and counters for drop down menu
- */
- .app-navigation-entry-utils {
- position: absolute;
- top: 0;
- right: 0;
- z-index: 105;
- ul {
- display: flex !important;
- align-items: center;
- justify-content: flex-end;
- }
- li {
- width: 44px !important;
- height: 44px;
- }
- }
- .active > .app-navigation-entry-utils li {
- display: inline-block;
- }
- .app-navigation-entry-utils button {
- height: 100%;
- width: 100%;
- margin: 0;
- box-shadow: none;
- }
- .app-navigation-entry-utils-menu-button {
- button {
- border: 0;
- opacity: .5;
- background-color: transparent;
- background-repeat: no-repeat;
- background-position: center;
- background-image: url('../img/actions/more.svg?v=1');
- }
- &:hover button,
- &:focus button {
- background-color: transparent;
- opacity: 1;
- }
- }
- .app-navigation-entry-utils-counter {
- overflow: hidden;
- text-overflow: hidden;
- text-align: right;
- font-size: 9pt;
- width: 38px;
- line-height: 44px;
- padding: 0 10px;
- }
- .app-navigation-entry-utils ul, .app-navigation-entry-menu ul {
- list-style-type: none;
- }
- /* editing an entry */
- .app-navigation-entry-edit {
- padding-left: 5px;
- padding-right: 5px;
- display: inline-block;
- height: 39px;
- width: 100%;
- input {
- border-bottom-right-radius: 0;
- border-top-right-radius: 0;
- width: calc(100% - 36px);
- padding: 5px;
- margin-right: 0;
- height: 38px;
- float: left;
- border: 1px solid rgba(190, 190, 190, 0.9);
- }
- button,
- input[type='submit'] {
- width: 36px;
- height: 38px;
- float: left;
- }
- .icon-checkmark {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
- border-left: 0;
- margin-right: 0;
- }
- }
- }
- /* APP-CONTENT ---------------------------------------------------------------*/
- /* Part where the content will be loaded into */
- #app-content {
- position: relative;
- height: 100%;
- overflow-y: auto;
- /* no top border for first settings item */
- > .section:first-child {
- border-top: none;
- }
- &.with-app-sidebar {
- margin-right: 27%;
- }
- }
- #app-content-wrapper {
- min-width: 100%;
- min-height: 100%;
- }
- /* APP-SIDEBAR ----------------------------------------------------------------*/
- /*
- Sidebar: a sidebar to be used within #app-content
- have it as first element within app-content in order to shrink other
- sibling containers properly. Compare Files app for example.
- */
- #app-sidebar {
- position: fixed;
- top: 45px;
- right: 0;
- left: auto;
- bottom: 0;
- width: 27%;
- min-width: 300px;
- display: block;
- background: #fff;
- border-left: 1px solid #eee;
- -webkit-transition: margin-right 300ms;
- transition: margin-right 300ms;
- overflow-x: hidden;
- overflow-y: auto;
- visibility: visible;
- z-index: 500;
- &.disappear {
- visibility: hidden;
- }
- }
- /* APP-SETTINGS ---------------------------------------------------------------*/
- /* settings area */
- #app-settings {
- position: fixed;
- width: 250px;
- /* change to 100% when layout positions are absolute */
- bottom: 0;
- z-index: 140;
- &.open #app-settings-content,
- &.opened #app-settings-content {
- display: block;
- }
- }
- #app-settings-content {
- display: none;
- padding: 10px;
- background-color: #fff;
- /* restrict height of settings and make scrollable */
- max-height: 300px;
- overflow-y: auto;
- border-right: 1px solid #eee;
- width: 250px;
- box-sizing: border-box;
- /* display input fields at full width */
- input[type='text'] {
- width: 93%;
- }
- .info-text {
- padding: 5px 0 7px 22px;
- color: #999;
- }
- }
- #app-settings-header {
- border-right: 1px solid #eee;
- width: 250px;
- box-sizing: border-box;
- }
- .settings-button {
- display: block;
- height: 44px;
- width: 100%;
- padding: 0;
- margin: 0;
- background-color: #fff;
- background-image: url('../img/actions/settings.svg?v=1');
- background-position: 14px center;
- background-repeat: no-repeat;
- box-shadow: none;
- border: 0;
- border-radius: 0;
- text-align: left;
- padding-left: 42px;
- font-weight: normal;
- &:hover,
- &:focus {
- background-color: #fff;
- }
- &.opened {
- &:hover, &:focus {
- background-color: #fff;
- }
- }
- }
- /* GENERAL SECTION ---------------------------------------------------------- */
- .section {
- display: block;
- padding: 30px;
- color: #555;
- margin-bottom: 24px;
- &.hidden {
- display: none !important;
- }
- /* slight position correction of checkboxes and radio buttons */
- input {
- &[type='checkbox'],
- &[type='radio'] {
- vertical-align: -2px;
- margin-right: 4px;
- }
- }
- }
- .sub-section {
- position: relative;
- margin-top: 10px;
- margin-left: 27px;
- margin-bottom: 10px;
- }
- .appear {
- opacity: 1;
- -webkit-transition: opacity 500ms ease 0s;
- -moz-transition: opacity 500ms ease 0s;
- -ms-transition: opacity 500ms ease 0s;
- -o-transition: opacity 500ms ease 0s;
- transition: opacity 500ms ease 0s;
- &.transparent {
- opacity: 0;
- }
- }
- /* DROPDOWN ----------------------------------------------------------------- */
- .dropdown {
- background: #eee;
- border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px;
- box-shadow: 0 1px 1px #777;
- display: block;
- margin-right: 0;
- position: absolute;
- right: 0;
- width: 420px;
- z-index: 500;
- padding: 16px;
- }
- /* TABS --------------------------------------------------------------------- */
- .tabHeaders {
- display: inline-block;
- margin: 15px;
- .tabHeader {
- float: left;
- padding: 5px;
- cursor: pointer;
- color: #888;
- margin-bottom: 1px;
- a {
- color: #888;
- margin-bottom: 1px;
- }
- &.selected {
- font-weight: 600;
- border-bottom: 1px solid #333;
- }
- &:hover {
- border-bottom: 1px solid #333;
- }
- &.selected, &:hover {
- margin-bottom: 0px;
- color: #000;
- a {
- margin-bottom: 0px;
- color: #000;
- }
- }
- }
- }
- .tabsContainer {
- clear: left;
- .tab {
- padding: 0 15px 15px;
- }
- }
- /* POPOVER MENU ------------------------------------------------------------- */
- .ie,
- .edge {
- .bubble, .bubble:after,
- .popovermenu, .popovermenu:after,
- #app-navigation .app-navigation-entry-menu,
- #app-navigation .app-navigation-entry-menu:after {
- border: 1px solid #eee;
- }
- }
- .bubble,
- .app-navigation-entry-menu,
- .popovermenu {
- position: absolute;
- background-color: #fff;
- color: #333;
- border-radius: 3px;
- z-index: 110;
- margin: 5px;
- margin-top: -5px;
- right: 0;
- -webkit-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
- -moz-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
- -ms-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
- -o-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
- filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
- display: none;
- &:after {
- bottom: 100%;
- /* Min-width of popover is 36px and arrow width is 20px
- wich leaves us 8px right and 8px left */
- right: 8px;
- /* change this to adjust the arrow position */
- border: solid transparent;
- content: ' ';
- height: 0;
- width: 0;
- position: absolute;
- pointer-events: none;
- border-color: rgba(238, 238, 238, 0);
- border-bottom-color: #fff;
- border-width: 10px;
- }
- /* Center the popover */
- &.menu-center {
- transform: translateX(50%);
- right: 50%;
- margin-right: 0;
- &:after {
- right: 50%;
- transform: translateX(50%);
- }
- }
- /* Align the popover to the left */
- &.menu-left {
- right: auto;
- left: 0;
- margin-right: 0;
- &:after {
- left: 6px;
- right: auto;
- }
- }
- &.open {
- display: block;
- }
- ul {
- /* Overwrite #app-navigation > ul ul */
- display: flex !important;
- flex-direction: column;
- }
- li {
- display: flex;
- > button,
- > a,
- > .menuitem {
- cursor: pointer;
- line-height: 36px;
- border: 0;
- -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)' !important;
- filter: alpha(opacity = 50) !important;
- opacity: .5 !important;
- background-color: transparent;
- display: flex;
- align-items: center;
- width: auto;
- height: auto;
- margin: 0;
- font-weight: inherit;
- box-shadow: none;
- color: #333 !important; /* Overwrite app-navigation li */
- /* prevent .action class to break the design */
- &.action {
- padding: inherit !important;
- }
- &:hover, &:focus {
- -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)' !important;
- filter: alpha(opacity = 100) !important;
- opacity: 1 !important;
- background-color: transparent;
- }
- > span {
- cursor: pointer;
- white-space: nowrap;
- }
- span {
- -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=70)' !important;
- filter: alpha(opacity = 70) !important;
- opacity: .7 !important;
- }
- > p {
- width: 150px;
- line-height: 1.6em;
- padding: 8px 0;
- }
- /* Add padding if contains icon+text */
- &:not(:empty) {
- padding: 0 !important;
- padding-right: 10px !important;
- }
- > img {
- width: 16px;
- padding: 0 10px;
- }
- }
- [class^='icon-'],
- [class*=' icon-']{
- /* Keep padding to define the width to
- assure correct position of a possible text */
- padding: 18px 0 18px 36px;
- min-width: 0; /* Overwrite icons*/
- min-height: 0;
- background-position: 10px center;
- opacity: 0.7; /* Default button icon override */
- }
- }
- }
|