123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- /* prevent ugly selection effect on accidental selection */
- #header,
- #navigation,
- #expanddiv {
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- }
- /* removed until content-focusing issue is fixed */
- #skip-to-content a {
- position: absolute;
- left: -10000px;
- top: auto;
- width: 1px;
- height: 1px;
- overflow: hidden;
- }
- #skip-to-content a:focus {
- left: 76px;
- top: -9px;
- color: #fff;
- width: auto;
- height: auto;
- }
- /* HEADERS ------------------------------------------------------------------ */
- #body-user #header,
- #body-settings #header,
- #body-public #header {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 2000;
- height: 45px;
- line-height: 2.5em;
- background-color: #1d2d44;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- /* LOGO and APP NAME -------------------------------------------------------- */
- #owncloud {
- position: absolute;
- top: 0;
- left: 0;
- padding: 5px;
- padding-bottom: 0;
- height: 45px; /* header height */
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
- opacity: 1;
- }
- #owncloud:focus {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
- opacity: .75;
- }
- #owncloud:hover,
- #owncloud:active {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
- opacity: 1;
- }
- #header .logo {
- background-image: url(../img/logo.svg);
- background-repeat: no-repeat;
- width: 252px;
- height: 120px;
- margin: 0 auto;
- }
- #header .logo-wide {
- background-image: url(../img/logo-wide.svg);
- background-repeat: no-repeat;
- width: 150px;
- height: 34px;
- }
- #header .logo-icon {
- /* display logo so appname can be shown next to it */
- display: inline-block;
- background-image: url(../img/logo-icon.svg);
- background-repeat: no-repeat;
- width: 62px;
- height: 34px;
- }
- #header .menutoggle {
- display: inline-block;
- position: absolute;
- left: 70px;
- height: 27px;
- padding-top: 18px;
- padding-right: 10px;
- }
- /* hover effect for app switcher label */
- .menutoggle .header-appname,
- .menutoggle .icon-caret {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
- opacity: .75;
- }
- .menutoggle:hover .header-appname,
- .menutoggle:hover .icon-caret,
- .menutoggle:focus .header-appname,
- .menutoggle:focus .icon-caret,
- .menutoggle.active .header-appname,
- .menutoggle.active .icon-caret {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
- opacity: 1;
- }
- /* show appname next to logo */
- .header-appname {
- display: inline-block;
- position: relative;
- color: #fff;
- font-size: 16px;
- margin: 0;
- margin-top: -24px;
- padding: 7px 0 7px 5px;
- vertical-align: middle;
- }
- /* show caret indicator next to logo to make clear it is tappable */
- #header .icon-caret {
- display: inline-block;
- width: 12px;
- height: 12px;
- margin: 0;
- margin-top: -21px;
- padding: 0;
- 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 --------------------------------------------------------------- */
- #navigation {
- position: fixed;
- top: 45px;
- left: 10px;
- width: 265px;
- max-height: 85%;
- margin-top: 0;
- padding-bottom: 10px;
- background-color: rgba(0, 0, 0, .97);
- box-shadow: 0 1px 10px rgba(50, 50, 50, .7);
- border-radius: 3px;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- display: none;
- /*overflow-y: auto;
- overflow-x: hidden;*/
- z-index: 2000;
- }
- /* arrow look */
- #navigation:after, #expanddiv:after {
- bottom: 100%;
- border: solid transparent;
- content: " ";
- height: 0;
- width: 0;
- position: absolute;
- pointer-events: none;
- border-color: rgba(0, 0, 0, 0);
- border-bottom-color: rgba(0, 0, 0, .97);
- border-width: 10px;
- margin-left: -10px;
- }
- /* position of dropdown arrow */
- #navigation:after {
- left: 47%;
- }
- #expanddiv:after {
- right: 15px;
- }
- #navigation, #navigation * {
- -moz-box-sizing:border-box;
- box-sizing:border-box;
- }
- #navigation li {
- display: inline-block;
- }
- #navigation a {
- position: relative;
- width: 80px;
- height: 80px;
- display: inline-block;
- text-align: center;
- padding: 20px 0;
- }
- #navigation a span {
- display: inline-block;
- font-size: 13px;
- padding-bottom: 0;
- padding-left: 0;
- width: 80px;
- text-align: center;
- color: #fff;
- white-space:nowrap;
- overflow:hidden;
- text-overflow:ellipsis;
- }
- /* icon opacity and hover effect */
- #navigation a img,
- #navigation a span {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
- opacity: .7;
- }
- #navigation a:hover img,
- #navigation a:focus img,
- #navigation a:hover span,
- #navigation a:focus span,
- #navigation a.active img,
- #navigation a.active span {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
- opacity: 1;
- }
- #navigation .app-icon {
- margin: 0 auto;
- padding: 0;
- max-height: 32px;
- max-width: 32px;
- }
- /* Apps management */
- #apps-management {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
- opacity: .6;
- min-height: initial;
- height: initial;
- margin: 0;
- }
- /* loading feedback for apps */
- #navigation .app-loading .icon-loading-dark {
- display: inline !important;
- position: absolute;
- top: 20px;
- left: 24px;
- width: 32px;
- height: 32px;
- }
- #navigation .app-loading .app-icon {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
- opacity: .1;
- }
- /* USER MENU -----------------------------------------------------------------*/
- /* info part on the right, used e.g. for info on who shared something */
- .header-right {
- position: absolute;
- right: 0;
- padding: 7px 5px;
- color: #fff;
- height: 100%;
- max-width: 80%;
- white-space: nowrap;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- /* Profile picture in header */
- #header .avatardiv {
- float: left;
- display: inline-block;
- margin-right: 8px;
- cursor: pointer;
- height: 32px;
- width: 32px;
- }
- #header .avatardiv img {
- opacity: 1;
- cursor: pointer;
- }
- #settings {
- float: right;
- color: #bbb;
- cursor: pointer;
- }
- #expand {
- display: block;
- padding: 7px 30px 6px 22px;
- cursor: pointer;
- }
- #expand * {
- cursor: pointer;
- }
- #expand:hover,
- #expand:focus,
- #expand:active {
- color: #fff;
- }
- #expand img {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
- opacity: .7;
- margin-bottom: -2px;
- }
- #expand:hover img,
- #expand:focus img,
- #expand:active img {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
- opacity: 1;
- }
- #expanddiv {
- position: absolute;
- right: 10px;
- top: 45px;
- z-index: 2000;
- display: none;
- background-color: rgba(0, 0, 0, .97);
- box-shadow: 0 1px 10px rgba(50, 50, 50, .7);
- border-radius: 3px;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- -moz-box-sizing: border-box; box-sizing: border-box;
- }
- #expanddiv a {
- display: block;
- height: 40px;
- color: #fff;
- padding: 4px 12px 0;
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
- opacity: .7;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- #expanddiv a img {
- margin-bottom: -3px;
- margin-right: 6px;
- }
- #expanddiv a:hover,
- #expanddiv a:focus,
- #expanddiv a:active,
- #expanddiv a.active {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
- opacity: 1;
- }
|