/** * Copyright (C) 2012-2014 KO GmbH * * @licstart * This file is part of WebODF. * * WebODF is free software: you can redistribute it and/or modify it * under the terms of the GNU Affero General Public License (GNU AGPL) * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * WebODF is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with WebODF. If not, see . * @licend * * @source: http://www.webodf.org/ * @source: https://github.com/kogmbh/WebODF/ */ /* * This file is a derivative from a part of Mozilla's PDF.js project. The * original license header follows. */ /* Copyright 2012 Mozilla Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ * { padding: 0; margin: 0; } html > body { font-family: sans-serif; overflow: hidden; } .titlebar > span, .toolbarLabel, input, button, select { font: message-box; } #titlebar { position: absolute; z-index: 2; top: 0px; left: 0px; height: 32px; width: 100%; overflow: hidden; -webkit-box-shadow: 0px 1px 3px rgba(50, 50, 50, 0.75); -moz-box-shadow: 0px 1px 3px rgba(50, 50, 50, 0.75); box-shadow: 0px 1px 3px rgba(50, 50, 50, 0.75); background-image: url(images/texture.png), linear-gradient(rgba(69, 69, 69, .95), rgba(82, 82, 82, .99)); background-image: url(images/texture.png), -webkit-linear-gradient(rgba(69, 69, 69, .95), rgba(82, 82, 82, .99)); background-image: url(images/texture.png), -moz-linear-gradient(rgba(69, 69, 69, .95), rgba(82, 82, 82, .99)); background-image: url(images/texture.png), -ms-linear-gradient(rgba(69, 69, 69, .95), rgba(82, 82, 82, .99)); background-image: url(images/texture.png), -o-linear-gradient(rgba(69, 69, 69, .95), rgba(82, 82, 82, .99)); } #titlebar a, #aboutDialog a, #titlebar a:visited, #aboutDialog a:visited { color: #ccc; } #documentName { margin-right: 10px; margin-left: 10px; margin-top: 8px; color: #F2F2F2; line-height: 14px; font-family: sans-serif; } #documentName { font-size: 14px; } #toolbarContainer { position: absolute; z-index: 2; bottom: 0px; left: 0px; height: 32px; width: 100%; overflow: hidden; -webkit-box-shadow: 0px -1px 3px rgba(50, 50, 50, 0.75); -moz-box-shadow: 0px -1px 3px rgba(50, 50, 50, 0.75); box-shadow: 0px -1px 3px rgba(50, 50, 50, 0.75); background-image: url(images/texture.png), linear-gradient(rgba(82, 82, 82, .99), rgba(69, 69, 69, .95)); background-image: url(images/texture.png), -webkit-linear-gradient(rgba(82, 82, 82, .99), rgba(69, 69, 69, .95)); background-image: url(images/texture.png), -moz-linear-gradient(rgba(82, 82, 82, .99), rgba(69, 69, 69, .95)); background-image: url(images/texture.png), -ms-linear-gradient(rgba(82, 82, 82, .99), rgba(69, 69, 69, .95)); background-image: url(images/texture.png), -o-linear-gradient(rgba(82, 82, 82, .99), rgba(69, 69, 69, .95)); } #toolbar { position: relative; } #toolbarMiddleContainer, #toolbarLeft { visibility: hidden; } html[dir='ltr'] #toolbarLeft { margin-left: -1px; } html[dir='rtl'] #toolbarRight { margin-left: -1px; } html[dir='ltr'] #toolbarLeft, html[dir='rtl'] #toolbarRight { position: absolute; top: 0; left: 0; } html[dir='ltr'] #toolbarRight, html[dir='rtl'] #toolbarLeft { position: absolute; top: 0; right: 0; } html[dir='ltr'] #toolbarLeft > *, html[dir='ltr'] #toolbarMiddle > *, html[dir='ltr'] #toolbarRight > * { float: left; } html[dir='rtl'] #toolbarLeft > *, html[dir='rtl'] #toolbarMiddle > *, html[dir='rtl'] #toolbarRight > * { float: right; } /* outer/inner center provides horizontal center */ html[dir='ltr'] .outerCenter { float: right; position: relative; right: 50%; } html[dir='rtl'] .outerCenter { float: left; position: relative; left: 50%; } html[dir='ltr'] .innerCenter { float: right; position: relative; right: -50%; } html[dir='rtl'] .innerCenter { float: left; position: relative; left: -50%; } html[dir='ltr'] .splitToolbarButton { margin: 3px 2px 4px 0; display: inline-block; } html[dir='rtl'] .splitToolbarButton { margin: 3px 0 4px 2px; display: inline-block; } html[dir='ltr'] .splitToolbarButton > .toolbarButton { border-radius: 0; float: left; } html[dir='rtl'] .splitToolbarButton > .toolbarButton { border-radius: 0; float: right; } .splitToolbarButton.toggled .toolbarButton { margin: 0; } .toolbarButton { border: 0 none; background-color: rgba(0, 0, 0, 0); min-width: 32px; height: 25px; border-radius: 2px; background-image: none; } html[dir='ltr'] .toolbarButton, html[dir='ltr'] .dropdownToolbarButton { margin: 3px 2px 4px 0; } html[dir='rtl'] .toolbarButton, html[dir='rtl'] .dropdownToolbarButton { margin: 3px 0 4px 2px; } .toolbarButton:hover, .toolbarButton:focus, .dropdownToolbarButton { background-color: hsla(0,0%,0%,.12); background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -webkit-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -ms-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -o-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-clip: padding-box; border: 1px solid hsla(0,0%,0%,.35); border-color: hsla(0,0%,0%,.32) hsla(0,0%,0%,.38) hsla(0,0%,0%,.42); box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset, 0 0 1px hsla(0,0%,100%,.15) inset, 0 1px 0 hsla(0,0%,100%,.05); } .toolbarButton:hover:active, .dropdownToolbarButton:hover:active { background-color: hsla(0,0%,0%,.2); background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -webkit-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -ms-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -o-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); border-color: hsla(0,0%,0%,.35) hsla(0,0%,0%,.4) hsla(0,0%,0%,.45); box-shadow: 0 1px 1px hsla(0,0%,0%,.1) inset, 0 0 1px hsla(0,0%,0%,.2) inset, 0 1px 0 hsla(0,0%,100%,.05); } .splitToolbarButton:hover > .toolbarButton, .splitToolbarButton:focus > .toolbarButton, .splitToolbarButton.toggled > .toolbarButton, .toolbarButton.textButton { background-color: hsla(0,0%,0%,.12); background-image: -webkit-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -ms-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -o-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-clip: padding-box; border: 1px solid hsla(0,0%,0%,.35); border-color: hsla(0,0%,0%,.32) hsla(0,0%,0%,.38) hsla(0,0%,0%,.42); box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset, 0 0 1px hsla(0,0%,100%,.15) inset, 0 1px 0 hsla(0,0%,100%,.05); -webkit-transition-property: background-color, border-color, box-shadow; -webkit-transition-duration: 150ms; -webkit-transition-timing-function: ease; -moz-transition-property: background-color, border-color, box-shadow; -moz-transition-duration: 150ms; -moz-transition-timing-function: ease; -ms-transition-property: background-color, border-color, box-shadow; -ms-transition-duration: 150ms; -ms-transition-timing-function: ease; -o-transition-property: background-color, border-color, box-shadow; -o-transition-duration: 150ms; -o-transition-timing-function: ease; transition-property: background-color, border-color, box-shadow; transition-duration: 150ms; transition-timing-function: ease; } .splitToolbarButton > .toolbarButton:hover, .splitToolbarButton > .toolbarButton:focus, .dropdownToolbarButton:hover, .toolbarButton.textButton:hover, .toolbarButton.textButton:focus { background-color: hsla(0,0%,0%,.2); box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset, 0 0 1px hsla(0,0%,100%,.15) inset, 0 0 1px hsla(0,0%,0%,.05); z-index: 199; } .splitToolbarButton:hover > .toolbarButton, .splitToolbarButton:focus > .toolbarButton, .splitToolbarButton.toggled > .toolbarButton, .toolbarButton.textButton { background-color: hsla(0,0%,0%,.12); background-image: -webkit-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -ms-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: -o-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); background-clip: padding-box; border: 1px solid hsla(0,0%,0%,.35); border-color: hsla(0,0%,0%,.32) hsla(0,0%,0%,.38) hsla(0,0%,0%,.42); box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset, 0 0 1px hsla(0,0%,100%,.15) inset, 0 1px 0 hsla(0,0%,100%,.05); -webkit-transition-property: background-color, border-color, box-shadow; -webkit-transition-duration: 150ms; -webkit-transition-timing-function: ease; -moz-transition-property: background-color, border-color, box-shadow; -moz-transition-duration: 150ms; -moz-transition-timing-function: ease; -ms-transition-property: background-color, border-color, box-shadow; -ms-transition-duration: 150ms; -ms-transition-timing-function: ease; -o-transition-property: background-color, border-color, box-shadow; -o-transition-duration: 150ms; -o-transition-timing-function: ease; transition-property: background-color, border-color, box-shadow; transition-duration: 150ms; transition-timing-function: ease; } .splitToolbarButton > .toolbarButton:hover, .splitToolbarButton > .toolbarButton:focus, .dropdownToolbarButton:hover, .toolbarButton.textButton:hover, .toolbarButton.textButton:focus { background-color: hsla(0,0%,0%,.2); box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset, 0 0 1px hsla(0,0%,100%,.15) inset, 0 0 1px hsla(0,0%,0%,.05); z-index: 199; } .dropdownToolbarButton { border: 1px solid #333 !important; } .toolbarButton, .dropdownToolbarButton { min-width: 16px; padding: 2px 6px 2px; border: 1px solid transparent; border-radius: 2px; color: hsl(0,0%,95%); font-size: 12px; line-height: 14px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; /* Opera does not support user-select, use <... unselectable="on"> instead */ cursor: default; -webkit-transition-property: background-color, border-color, box-shadow; -webkit-transition-duration: 150ms; -webkit-transition-timing-function: ease; -moz-transition-property: background-color, border-color, box-shadow; -moz-transition-duration: 150ms; -moz-transition-timing-function: ease; -ms-transition-property: background-color, border-color, box-shadow; -ms-transition-duration: 150ms; -ms-transition-timing-function: ease; -o-transition-property: background-color, border-color, box-shadow; -o-transition-duration: 150ms; -o-transition-timing-function: ease; transition-property: background-color, border-color, box-shadow; transition-duration: 150ms; transition-timing-function: ease; } html[dir='ltr'] .toolbarButton, html[dir='ltr'] .dropdownToolbarButton { margin: 3px 2px 4px 0; } html[dir='rtl'] .toolbarButton, html[dir='rtl'] .dropdownToolbarButton { margin: 3px 0 4px 2px; } .splitToolbarButton:hover > .splitToolbarButtonSeparator, .splitToolbarButton.toggled > .splitToolbarButtonSeparator { padding: 12px 0; margin: 0; box-shadow: 0 0 0 1px hsla(0,0%,100%,.03); -webkit-transition-property: padding; -webkit-transition-duration: 10ms; -webkit-transition-timing-function: ease; -moz-transition-property: padding; -moz-transition-duration: 10ms; -moz-transition-timing-function: ease; -ms-transition-property: padding; -ms-transition-duration: 10ms; -ms-transition-timing-function: ease; -o-transition-property: padding; -o-transition-duration: 10ms; -o-transition-timing-function: ease; transition-property: padding; transition-duration: 10ms; transition-timing-function: ease; } .toolbarButton.toggled:hover:active, .splitToolbarButton > .toolbarButton:hover:active { background-color: hsla(0,0%,0%,.4); border-color: hsla(0,0%,0%,.4) hsla(0,0%,0%,.5) hsla(0,0%,0%,.55); box-shadow: 0 1px 1px hsla(0,0%,0%,.2) inset, 0 0 1px hsla(0,0%,0%,.3) inset, 0 1px 0 hsla(0,0%,100%,.05); } html[dir='ltr'] .splitToolbarButton > .toolbarButton:first-child, html[dir='rtl'] .splitToolbarButton > .toolbarButton:last-child { position: relative; margin: 0; margin-left: 4px; margin-right: -1px; border-top-left-radius: 2px; border-bottom-left-radius: 2px; border-right-color: transparent; } html[dir='ltr'] .splitToolbarButton > .toolbarButton:last-child, html[dir='rtl'] .splitToolbarButton > .toolbarButton:first-child { position: relative; margin: 0; margin-left: -1px; border-top-right-radius: 2px; border-bottom-right-radius: 2px; border-left-color: transparent; } .splitToolbarButtonSeparator { padding: 8px 0; width: 1px; background-color: hsla(0,0%,00%,.5); z-index: 99; box-shadow: 0 0 0 1px hsla(0,0%,100%,.08); display: inline-block; margin: 5px 0; } html[dir='ltr'] .splitToolbarButtonSeparator { float:left; } html[dir='rtl'] .splitToolbarButtonSeparator { float:right; } .dropdownToolbarButton { min-width: 120px; max-width: 120px; padding: 4px 2px 4px; overflow: hidden; background: url(images/toolbarButton-menuArrows.png) no-repeat; } .dropdownToolbarButton > select { -webkit-appearance: none; -moz-appearance: none; /* in the future this might matter, see bugzilla bug #649849 */ min-width: 140px; font-size: 12px; color: hsl(0,0%,95%); margin:0; padding:0; border:none; background: rgba(0,0,0,0); /* Opera does not support 'transparent'