2012-04-12 08:12:51 +09:00
|
|
|
* {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2011-05-26 23:02:52 +09:00
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
html {
|
|
|
|
height: 100%;
|
2011-05-26 23:02:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2012-04-12 08:12:51 +09:00
|
|
|
height: 100%;
|
|
|
|
background-color: #404040;
|
|
|
|
background-image: url(images/texture.png);
|
2012-06-13 18:15:31 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
body,
|
|
|
|
input,
|
2012-06-13 18:27:22 +09:00
|
|
|
button,
|
2012-06-13 18:15:31 +09:00
|
|
|
select {
|
2012-06-14 02:47:46 +09:00
|
|
|
font: message-box;
|
2011-05-26 23:02:52 +09:00
|
|
|
}
|
|
|
|
|
2012-04-26 09:20:13 +09:00
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2011-10-19 04:40:59 +09:00
|
|
|
[hidden] {
|
2012-01-25 08:13:50 +09:00
|
|
|
display: none !important;
|
2011-10-19 04:40:59 +09:00
|
|
|
}
|
|
|
|
|
2012-07-31 00:52:29 +09:00
|
|
|
#viewerContainer:-webkit-full-screen {
|
2012-07-31 00:12:49 +09:00
|
|
|
top: 0px;
|
|
|
|
padding-top: 6px;
|
|
|
|
padding-bottom: 24px;
|
|
|
|
background-color: #404040;
|
|
|
|
background-image: url(images/texture.png);
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
:-webkit-full-screen #viewer {
|
|
|
|
margin: 0pt;
|
|
|
|
padding: 0pt;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
:-webkit-full-screen .page {
|
|
|
|
margin: 0px auto;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2012-07-31 00:52:29 +09:00
|
|
|
#viewerContainer:-moz-full-screen {
|
2012-07-31 00:12:49 +09:00
|
|
|
background-color: #404040;
|
|
|
|
background-image: url(images/texture.png);
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2012-07-31 03:15:48 +09:00
|
|
|
:-moz-full-screen .page:last-child {
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
2012-07-31 00:12:49 +09:00
|
|
|
#viewerContainer:full-screen {
|
|
|
|
top: 0px;
|
|
|
|
background-color: #404040;
|
|
|
|
background-image: url(images/texture.png);
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2012-04-26 03:34:28 +09:00
|
|
|
/* outer/inner center provides horizontal center */
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='ltr'] .outerCenter {
|
2012-04-26 03:34:28 +09:00
|
|
|
float: right;
|
|
|
|
position: relative;
|
|
|
|
right: 50%;
|
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='rtl'] .outerCenter {
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
html[dir='ltr'] .innerCenter {
|
2012-04-26 03:34:28 +09:00
|
|
|
float: right;
|
|
|
|
position: relative;
|
|
|
|
right: -50%;
|
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='rtl'] .innerCenter {
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
left: -50%;
|
|
|
|
}
|
2012-04-26 03:34:28 +09:00
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#outerContainer {
|
2011-07-29 02:48:05 +09:00
|
|
|
width: 100%;
|
2012-04-12 08:12:51 +09:00
|
|
|
height: 100%;
|
2011-05-26 23:02:52 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#sidebarContainer {
|
2012-04-26 03:34:28 +09:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2012-04-12 08:12:51 +09:00
|
|
|
width: 200px;
|
2012-05-02 01:43:48 +09:00
|
|
|
visibility: hidden;
|
2012-04-26 03:34:28 +09:00
|
|
|
-webkit-transition-duration: 200ms;
|
|
|
|
-webkit-transition-timing-function: ease;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-transition-duration: 200ms;
|
|
|
|
-moz-transition-timing-function: ease;
|
|
|
|
-ms-transition-duration: 200ms;
|
|
|
|
-ms-transition-timing-function: ease;
|
|
|
|
-o-transition-duration: 200ms;
|
|
|
|
-o-transition-timing-function: ease;
|
|
|
|
transition-duration: 200ms;
|
|
|
|
transition-timing-function: ease;
|
|
|
|
|
2012-04-26 03:34:28 +09:00
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='ltr'] #sidebarContainer {
|
2012-05-02 07:19:02 +09:00
|
|
|
-webkit-transition-property: left;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-transition-property: left;
|
|
|
|
-ms-transition-property: left;
|
|
|
|
-o-transition-property: left;
|
|
|
|
transition-property: left;
|
2012-05-02 07:08:30 +09:00
|
|
|
left: -200px;
|
|
|
|
}
|
|
|
|
html[dir='rtl'] #sidebarContainer {
|
2012-05-02 07:19:02 +09:00
|
|
|
-webkit-transition-property: right;
|
2012-06-11 18:03:15 +09:00
|
|
|
-ms-transition-property: right;
|
|
|
|
-o-transition-property: right;
|
|
|
|
transition-property: right;
|
2012-05-02 07:08:30 +09:00
|
|
|
right: -200px;
|
2011-05-26 23:02:52 +09:00
|
|
|
}
|
|
|
|
|
2012-05-02 07:19:02 +09:00
|
|
|
#outerContainer.sidebarMoving > #sidebarContainer,
|
2012-04-26 06:19:02 +09:00
|
|
|
#outerContainer.sidebarOpen > #sidebarContainer {
|
2012-05-02 01:43:48 +09:00
|
|
|
visibility: visible;
|
2012-05-02 07:19:02 +09:00
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='ltr'] #outerContainer.sidebarOpen > #sidebarContainer {
|
2012-04-26 05:46:17 +09:00
|
|
|
left: 0px;
|
2012-04-26 03:34:28 +09:00
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='rtl'] #outerContainer.sidebarOpen > #sidebarContainer {
|
|
|
|
right: 0px;
|
2011-10-15 11:05:57 +09:00
|
|
|
}
|
|
|
|
|
2012-04-26 03:34:28 +09:00
|
|
|
#mainContainer {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
-webkit-transition-duration: 200ms;
|
|
|
|
-webkit-transition-timing-function: ease;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-transition-duration: 200ms;
|
|
|
|
-moz-transition-timing-function: ease;
|
|
|
|
-ms-transition-duration: 200ms;
|
|
|
|
-ms-transition-timing-function: ease;
|
|
|
|
-o-transition-duration: 200ms;
|
|
|
|
-o-transition-timing-function: ease;
|
|
|
|
transition-duration: 200ms;
|
|
|
|
transition-timing-function: ease;
|
2011-06-30 12:43:59 +09:00
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='ltr'] #outerContainer.sidebarOpen > #mainContainer {
|
2012-05-02 07:19:02 +09:00
|
|
|
-webkit-transition-property: left;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-transition-property: left;
|
|
|
|
-ms-transition-property: left;
|
|
|
|
-o-transition-property: left;
|
|
|
|
transition-property: left;
|
2012-04-26 03:34:28 +09:00
|
|
|
left: 200px;
|
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='rtl'] #outerContainer.sidebarOpen > #mainContainer {
|
2012-05-02 07:19:02 +09:00
|
|
|
-webkit-transition-property: right;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-transition-property: right;
|
|
|
|
-ms-transition-property: right;
|
|
|
|
-o-transition-property: right;
|
|
|
|
transition-property: right;
|
2012-05-02 07:08:30 +09:00
|
|
|
right: 200px;
|
|
|
|
}
|
2012-04-26 03:34:28 +09:00
|
|
|
|
|
|
|
#sidebarContent {
|
2012-04-26 04:14:09 +09:00
|
|
|
top: 32px;
|
2012-04-26 03:34:28 +09:00
|
|
|
bottom: 0;
|
|
|
|
overflow: auto;
|
|
|
|
position: absolute;
|
|
|
|
width: 200px;
|
2011-06-30 12:43:59 +09:00
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
background-color: hsla(0,0%,0%,.1);
|
|
|
|
box-shadow: inset -1px 0 0 hsla(0,0%,0%,.25);
|
2011-05-26 23:02:52 +09:00
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='ltr'] #sidebarContent {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
html[dir='rtl'] #sidebarContent {
|
|
|
|
right: 0;
|
2011-08-29 05:10:14 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#viewerContainer {
|
2012-04-26 03:34:28 +09:00
|
|
|
overflow: auto;
|
2012-04-12 08:12:51 +09:00
|
|
|
box-shadow: inset 1px 0 0 hsla(0,0%,100%,.05);
|
2012-04-13 07:08:07 +09:00
|
|
|
padding-top: 30px;
|
2012-04-26 03:34:28 +09:00
|
|
|
position: absolute;
|
|
|
|
top: 32px;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2011-05-26 23:02:52 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbar {
|
2012-04-26 03:34:28 +09:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2012-04-12 08:12:51 +09:00
|
|
|
height: 32px;
|
|
|
|
z-index: 9999;
|
|
|
|
cursor: default;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#toolbarContainer {
|
|
|
|
width: 100%;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#toolbarSidebar {
|
|
|
|
width: 200px;
|
2012-06-08 05:51:29 +09:00
|
|
|
height: 29px;
|
2012-06-11 18:03:15 +09:00
|
|
|
background-image: url(images/texture.png),
|
|
|
|
-webkit-linear-gradient(hsla(0,0%,30%,.99), hsla(0,0%,25%,.95));
|
2012-04-12 08:12:51 +09:00
|
|
|
background-image: url(images/texture.png),
|
|
|
|
-moz-linear-gradient(hsla(0,0%,30%,.99), hsla(0,0%,25%,.95));
|
2012-04-18 03:10:52 +09:00
|
|
|
background-image: url(images/texture.png),
|
2012-06-11 18:03:15 +09:00
|
|
|
-ms-linear-gradient(hsla(0,0%,30%,.99), hsla(0,0%,25%,.95));
|
|
|
|
background-image: url(images/texture.png),
|
|
|
|
-o-linear-gradient(hsla(0,0%,30%,.99), hsla(0,0%,25%,.95));
|
|
|
|
background-image: url(images/texture.png),
|
|
|
|
linear-gradient(hsla(0,0%,30%,.99), hsla(0,0%,25%,.95));
|
2012-04-12 08:12:51 +09:00
|
|
|
box-shadow: inset -2px 0 0 hsla(0,0%,100%,.08),
|
|
|
|
inset 0 1px 1px hsla(0,0%,0%,.15),
|
|
|
|
inset 0 -1px 0 hsla(0,0%,100%,.05),
|
|
|
|
0 1px 0 hsla(0,0%,0%,.15),
|
|
|
|
0 1px 1px hsla(0,0%,0%,.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#toolbarViewer {
|
2012-04-26 03:34:28 +09:00
|
|
|
position: relative;
|
2012-04-12 08:12:51 +09:00
|
|
|
height: 32px;
|
2012-06-11 18:03:15 +09:00
|
|
|
background-image: url(images/texture.png),
|
|
|
|
-webkit-linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95));
|
2012-04-12 08:12:51 +09:00
|
|
|
background-image: url(images/texture.png),
|
|
|
|
-moz-linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95));
|
2012-04-18 03:10:52 +09:00
|
|
|
background-image: url(images/texture.png),
|
2012-06-11 18:03:15 +09:00
|
|
|
-ms-linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95));
|
|
|
|
background-image: url(images/texture.png),
|
|
|
|
-o-linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95));
|
|
|
|
background-image: url(images/texture.png),
|
|
|
|
linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95));
|
2012-04-12 08:12:51 +09:00
|
|
|
border-left: 1px solid hsla(0,0%,0%,.5);
|
|
|
|
box-shadow: inset 1px 0 0 hsla(0,0%,100%,.08),
|
|
|
|
inset 0 1px 1px hsla(0,0%,0%,.15),
|
|
|
|
inset 0 -1px 0 hsla(0,0%,100%,.05),
|
|
|
|
0 1px 0 hsla(0,0%,0%,.15),
|
|
|
|
0 1px 1px hsla(0,0%,0%,.1);
|
2011-05-26 23:02:52 +09:00
|
|
|
}
|
2012-05-02 09:39:24 +09:00
|
|
|
html[dir='ltr'] #toolbarViewerLeft {
|
|
|
|
margin-left: -1px;
|
|
|
|
}
|
|
|
|
html[dir='rtl'] #toolbarViewerRight {
|
|
|
|
margin-left: -1px;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
|
|
|
|
2012-05-02 07:08:30 +09:00
|
|
|
|
|
|
|
html[dir='ltr'] #toolbarViewerLeft,
|
|
|
|
html[dir='rtl'] #toolbarViewerRight {
|
2012-04-26 03:34:28 +09:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='ltr'] #toolbarViewerRight,
|
|
|
|
html[dir='rtl'] #toolbarViewerLeft {
|
2012-02-08 00:20:25 +09:00
|
|
|
position: absolute;
|
2012-04-26 03:34:28 +09:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='ltr'] #toolbarViewerLeft > *,
|
|
|
|
html[dir='ltr'] #toolbarViewerMiddle > *,
|
|
|
|
html[dir='ltr'] #toolbarViewerRight > * {
|
2012-04-26 03:34:28 +09:00
|
|
|
float: left;
|
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='rtl'] #toolbarViewerLeft > *,
|
|
|
|
html[dir='rtl'] #toolbarViewerMiddle > *,
|
|
|
|
html[dir='rtl'] #toolbarViewerRight > * {
|
|
|
|
float: right;
|
2012-02-07 17:23:23 +09:00
|
|
|
}
|
|
|
|
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='ltr'] .splitToolbarButton {
|
2012-04-26 03:34:28 +09:00
|
|
|
margin: 3px 2px 4px 0;
|
|
|
|
display: inline-block;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='rtl'] .splitToolbarButton {
|
|
|
|
margin: 3px 0 4px 2px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
html[dir='ltr'] .splitToolbarButton > .toolbarButton {
|
2012-04-12 08:12:51 +09:00
|
|
|
border-radius: 0;
|
2012-04-26 03:34:28 +09:00
|
|
|
float: left;
|
2012-04-12 08:12:51 +09:00
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='rtl'] .splitToolbarButton > .toolbarButton {
|
|
|
|
border-radius: 0;
|
|
|
|
float: right;
|
2012-02-05 05:13:12 +09:00
|
|
|
}
|
|
|
|
|
2012-04-18 03:10:52 +09:00
|
|
|
.toolbarButton {
|
2012-04-26 03:34:28 +09:00
|
|
|
border: 0 none;
|
|
|
|
background-color: rgba(0, 0, 0, 0);
|
2012-04-27 06:38:41 +09:00
|
|
|
width: 32px;
|
|
|
|
height: 25px;
|
2012-02-05 05:13:12 +09:00
|
|
|
}
|
|
|
|
|
2012-05-04 23:51:21 +09:00
|
|
|
.toolbarButton > span {
|
2012-05-05 02:34:18 +09:00
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2011-07-29 02:48:05 +09:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2012-04-26 08:48:01 +09:00
|
|
|
.toolbarButton[disabled] {
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
|
2012-05-09 06:22:48 +09:00
|
|
|
.toolbarButton.group {
|
|
|
|
margin-right:0;
|
|
|
|
}
|
|
|
|
|
2012-06-08 05:51:29 +09:00
|
|
|
.splitToolbarButton.toggled .toolbarButton {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.splitToolbarButton:hover > .toolbarButton,
|
2012-05-02 01:43:48 +09:00
|
|
|
.splitToolbarButton:focus > .toolbarButton,
|
2012-06-08 05:51:29 +09:00
|
|
|
.splitToolbarButton.toggled > .toolbarButton,
|
|
|
|
.toolbarButton.textButton {
|
2012-04-12 08:12:51 +09:00
|
|
|
background-color: hsla(0,0%,0%,.12);
|
2012-04-18 03:10:52 +09:00
|
|
|
background-image: -webkit-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
2012-06-11 18:03:15 +09:00
|
|
|
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));
|
2012-04-12 08:12:51 +09:00
|
|
|
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);
|
2012-04-18 03:10:52 +09:00
|
|
|
-webkit-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-webkit-transition-duration: 150ms;
|
|
|
|
-webkit-transition-timing-function: ease;
|
2012-06-11 18:03:15 +09:00
|
|
|
-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;
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
}
|
|
|
|
.splitToolbarButton > .toolbarButton:hover,
|
2012-05-02 01:43:48 +09:00
|
|
|
.splitToolbarButton > .toolbarButton:focus,
|
2012-06-08 05:51:29 +09:00
|
|
|
.dropdownToolbarButton:hover,
|
|
|
|
.toolbarButton.textButton:hover,
|
|
|
|
.toolbarButton.textButton:focus {
|
2012-04-12 08:12:51 +09:00
|
|
|
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;
|
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='ltr'] .splitToolbarButton > .toolbarButton:first-child,
|
|
|
|
html[dir='rtl'] .splitToolbarButton > .toolbarButton:last-child {
|
2012-04-12 08:12:51 +09:00
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
margin-right: -1px;
|
|
|
|
border-top-left-radius: 2px;
|
|
|
|
border-bottom-left-radius: 2px;
|
|
|
|
border-right-color: transparent;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='ltr'] .splitToolbarButton > .toolbarButton:last-child,
|
|
|
|
html[dir='rtl'] .splitToolbarButton > .toolbarButton:first-child {
|
2012-04-12 08:12:51 +09:00
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
margin-left: -1px;
|
|
|
|
border-top-right-radius: 2px;
|
|
|
|
border-bottom-right-radius: 2px;
|
|
|
|
border-left-color: transparent;
|
|
|
|
}
|
|
|
|
.splitToolbarButtonSeparator {
|
2012-04-26 03:34:28 +09:00
|
|
|
padding: 8px 0;
|
2012-04-12 08:12:51 +09:00
|
|
|
width: 1px;
|
|
|
|
background-color: hsla(0,0%,00%,.5);
|
|
|
|
z-index: 99;
|
|
|
|
box-shadow: 0 0 0 1px hsla(0,0%,100%,.08);
|
2012-04-26 03:34:28 +09:00
|
|
|
display: inline-block;
|
|
|
|
margin: 5px 0;
|
2012-05-02 07:08:30 +09:00
|
|
|
}
|
|
|
|
html[dir='ltr'] .splitToolbarButtonSeparator {
|
2012-04-26 03:34:28 +09:00
|
|
|
float:left;
|
2012-04-12 08:12:51 +09:00
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='rtl'] .splitToolbarButtonSeparator {
|
|
|
|
float:right;
|
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
.splitToolbarButton:hover > .splitToolbarButtonSeparator,
|
|
|
|
.splitToolbarButton.toggled > .splitToolbarButtonSeparator {
|
2012-04-27 06:38:41 +09:00
|
|
|
padding: 12px 0;
|
2012-04-26 03:34:28 +09:00
|
|
|
margin: 0;
|
2012-04-12 08:12:51 +09:00
|
|
|
box-shadow: 0 0 0 1px hsla(0,0%,100%,.03);
|
2012-04-26 03:34:28 +09:00
|
|
|
-webkit-transition-property: padding;
|
2012-04-18 03:10:52 +09:00
|
|
|
-webkit-transition-duration: 10ms;
|
|
|
|
-webkit-transition-timing-function: ease;
|
2012-06-11 18:03:15 +09:00
|
|
|
-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;
|
2012-04-12 08:12:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarButton,
|
|
|
|
.dropdownToolbarButton {
|
|
|
|
min-width: 16px;
|
2012-04-27 06:38:41 +09:00
|
|
|
padding: 2px 6px 0;
|
2012-04-12 08:12:51 +09:00
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: 2px;
|
|
|
|
color: hsl(0,0%,95%);
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 14px;
|
2012-04-18 03:10:52 +09:00
|
|
|
-webkit-user-select:none;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-user-select:none;
|
|
|
|
-ms-user-select:none;
|
|
|
|
/* Opera does not support user-select, use <... unselectable="on"> instead */
|
2012-04-12 08:12:51 +09:00
|
|
|
cursor: default;
|
2012-04-18 03:10:52 +09:00
|
|
|
-webkit-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-webkit-transition-duration: 150ms;
|
|
|
|
-webkit-transition-timing-function: ease;
|
2012-06-11 18:03:15 +09:00
|
|
|
-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;
|
2012-04-12 08:12:51 +09:00
|
|
|
}
|
|
|
|
|
2012-05-02 07:08:30 +09:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButton:hover,
|
2012-05-02 01:43:48 +09:00
|
|
|
.toolbarButton:focus,
|
2012-04-12 08:12:51 +09:00
|
|
|
.dropdownToolbarButton {
|
|
|
|
background-color: hsla(0,0%,0%,.12);
|
2012-04-18 03:10:52 +09:00
|
|
|
background-image: -webkit-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
2012-06-11 18:03:15 +09:00
|
|
|
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));
|
2012-04-12 08:12:51 +09:00
|
|
|
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);
|
2012-04-18 03:10:52 +09:00
|
|
|
background-image: -webkit-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
2012-06-11 18:03:15 +09:00
|
|
|
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));
|
2012-04-12 08:12:51 +09:00
|
|
|
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);
|
2012-04-18 03:10:52 +09:00
|
|
|
-webkit-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-webkit-transition-duration: 10ms;
|
|
|
|
-webkit-transition-timing-function: linear;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-moz-transition-duration: 10ms;
|
|
|
|
-moz-transition-timing-function: linear;
|
|
|
|
-ms-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-ms-transition-duration: 10ms;
|
|
|
|
-ms-transition-timing-function: linear;
|
|
|
|
-o-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-o-transition-duration: 10ms;
|
|
|
|
-o-transition-timing-function: linear;
|
|
|
|
transition-property: background-color, border-color, box-shadow;
|
|
|
|
transition-duration: 10ms;
|
|
|
|
transition-timing-function: linear;
|
2012-04-12 08:12:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarButton.toggled,
|
|
|
|
.splitToolbarButton.toggled > .toolbarButton.toggled {
|
|
|
|
background-color: hsla(0,0%,0%,.3);
|
2012-04-18 03:10:52 +09:00
|
|
|
background-image: -webkit-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
2012-06-11 18:03:15 +09:00
|
|
|
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));
|
2012-04-12 08:12:51 +09:00
|
|
|
border-color: hsla(0,0%,0%,.4) hsla(0,0%,0%,.45) hsla(0,0%,0%,.5);
|
|
|
|
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);
|
2012-04-18 03:10:52 +09:00
|
|
|
-webkit-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-webkit-transition-duration: 10ms;
|
|
|
|
-webkit-transition-timing-function: linear;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-moz-transition-duration: 10ms;
|
|
|
|
-moz-transition-timing-function: linear;
|
|
|
|
-ms-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-ms-transition-duration: 10ms;
|
|
|
|
-ms-transition-timing-function: linear;
|
|
|
|
-o-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-o-transition-duration: 10ms;
|
|
|
|
-o-transition-timing-function: linear;
|
|
|
|
transition-property: background-color, border-color, box-shadow;
|
|
|
|
transition-duration: 10ms;
|
|
|
|
transition-timing-function: linear;
|
2012-04-12 08:12:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarButton.toggled:hover:active,
|
|
|
|
.splitToolbarButton.toggled > .toolbarButton.toggled: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);
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdownToolbarButton {
|
2012-04-26 07:55:11 +09:00
|
|
|
min-width: 120px;
|
|
|
|
max-width: 120px;
|
2012-04-27 06:38:41 +09:00
|
|
|
padding: 3px 2px 2px;
|
2011-09-22 07:32:36 +09:00
|
|
|
overflow: hidden;
|
2012-05-02 07:08:30 +09:00
|
|
|
background: url(images/toolbarButton-menuArrows.png) no-repeat;
|
|
|
|
}
|
|
|
|
html[dir='ltr'] .dropdownToolbarButton {
|
|
|
|
background-position: 95%;
|
|
|
|
}
|
|
|
|
html[dir='rtl'] .dropdownToolbarButton {
|
|
|
|
background-position: 5%;
|
2011-08-31 21:22:48 +09:00
|
|
|
}
|
|
|
|
|
2012-04-18 03:10:52 +09:00
|
|
|
.dropdownToolbarButton > select {
|
|
|
|
-webkit-appearance: none;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-appearance: none; /* in the future this might matter, see bugzilla bug #649849 */
|
2012-04-26 07:55:11 +09:00
|
|
|
min-width: 140px;
|
2012-04-14 03:13:53 +09:00
|
|
|
font-size: 12px;
|
|
|
|
color: hsl(0,0%,95%);
|
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
border:none;
|
2012-07-31 17:48:52 +09:00
|
|
|
background: rgba(0,0,0,0); /* Opera does not support 'transparent' <select> background */
|
2012-02-07 17:23:23 +09:00
|
|
|
}
|
|
|
|
|
2012-05-17 10:19:38 +09:00
|
|
|
.dropdownToolbarButton > select > option {
|
|
|
|
background: hsl(0,0%,24%);
|
|
|
|
}
|
|
|
|
|
2012-04-26 07:55:11 +09:00
|
|
|
#customScaleOption {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pageWidthOption {
|
|
|
|
border-bottom: 1px rgba(255, 255, 255, .5) solid;
|
|
|
|
}
|
|
|
|
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='ltr'] .splitToolbarButton:first-child,
|
|
|
|
html[dir='ltr'] .toolbarButton:first-child,
|
|
|
|
html[dir='rtl'] .splitToolbarButton:last-child,
|
|
|
|
html[dir='rtl'] .toolbarButton:last-child {
|
2012-04-12 08:12:51 +09:00
|
|
|
margin-left: 4px;
|
2012-02-05 05:13:12 +09:00
|
|
|
}
|
2012-05-02 07:08:30 +09:00
|
|
|
html[dir='ltr'] .splitToolbarButton:last-child,
|
|
|
|
html[dir='ltr'] .toolbarButton:last-child,
|
|
|
|
html[dir='rtl'] .splitToolbarButton:first-child,
|
|
|
|
html[dir='rtl'] .toolbarButton:first-child {
|
2012-04-12 08:12:51 +09:00
|
|
|
margin-right: 4px;
|
2011-08-31 21:22:48 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButtonSpacer {
|
|
|
|
width: 30px;
|
2011-08-31 21:22:48 +09:00
|
|
|
display: inline-block;
|
2012-04-26 03:34:28 +09:00
|
|
|
height: 1px;
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButtonFlexibleSpacer {
|
2012-04-18 03:10:52 +09:00
|
|
|
-webkit-box-flex: 1;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-box-flex: 1;
|
2012-04-12 08:12:51 +09:00
|
|
|
min-width: 30px;
|
2011-08-31 21:22:48 +09:00
|
|
|
}
|
|
|
|
|
2012-04-13 07:08:07 +09:00
|
|
|
.toolbarButton#sidebarToggle::before {
|
2012-04-12 08:12:51 +09:00
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-sidebarToggle.png);
|
2011-08-31 21:22:48 +09:00
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
|
2012-05-02 09:39:24 +09:00
|
|
|
html[dir='ltr'] .toolbarButton.pageUp::before {
|
2011-08-31 21:22:48 +09:00
|
|
|
display: inline-block;
|
2012-04-12 08:12:51 +09:00
|
|
|
content: url(images/toolbarButton-pageUp.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
2012-05-02 09:39:24 +09:00
|
|
|
|
|
|
|
html[dir='rtl'] .toolbarButton.pageUp::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-pageUp-rtl.png);
|
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
|
2012-05-02 09:39:24 +09:00
|
|
|
html[dir='ltr'] .toolbarButton.pageDown::before {
|
2012-04-12 08:12:51 +09:00
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-pageDown.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-05-02 09:39:24 +09:00
|
|
|
html[dir='rtl'] .toolbarButton.pageDown::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-pageDown-rtl.png);
|
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButton.zoomOut::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-zoomOut.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
|
|
|
|
.toolbarButton.zoomIn::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-zoomIn.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-07-31 00:12:49 +09:00
|
|
|
.toolbarButton.fullscreen::before {
|
|
|
|
display: inline-block;
|
2012-07-31 00:58:34 +09:00
|
|
|
content: url(images/toolbarButton-fullscreen.png);
|
2012-07-31 00:12:49 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButton.print::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-print.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-05-21 07:12:58 +09:00
|
|
|
.toolbarButton.openFile::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-openFile.png);
|
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButton.download::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-download.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-04-17 04:41:55 +09:00
|
|
|
.toolbarButton.bookmark {
|
2012-04-27 06:38:41 +09:00
|
|
|
-webkit-box-sizing: border-box;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-box-sizing: border-box;
|
2012-04-27 06:38:41 +09:00
|
|
|
box-sizing: border-box;
|
2012-05-01 06:58:12 +09:00
|
|
|
margin-top: 3px;
|
|
|
|
padding-top: 4px;
|
2012-04-17 04:41:55 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButton.bookmark::before {
|
|
|
|
content: url(images/toolbarButton-bookmark.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
|
2012-04-13 08:29:15 +09:00
|
|
|
#viewThumbnail.toolbarButton::before {
|
2012-04-12 08:12:51 +09:00
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-viewThumbnail.png);
|
|
|
|
}
|
|
|
|
|
2012-04-13 08:29:15 +09:00
|
|
|
#viewOutline.toolbarButton::before {
|
2012-04-12 08:12:51 +09:00
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-viewOutline.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-05-09 06:22:48 +09:00
|
|
|
#viewSearch.toolbarButton::before {
|
|
|
|
display: inline-block;
|
2012-05-22 01:23:12 +09:00
|
|
|
content: url(images/toolbarButton-search.png);
|
2012-05-09 06:22:48 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarField {
|
|
|
|
padding: 3px 6px;
|
|
|
|
margin: 4px 0 4px 0;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: 2px;
|
|
|
|
background-color: hsla(0,0%,100%,.09);
|
|
|
|
background-image: -moz-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%,0%,.05) inset,
|
|
|
|
0 1px 0 hsla(0,0%,100%,.05);
|
|
|
|
color: hsl(0,0%,95%);
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 14px;
|
|
|
|
outline-style: none;
|
|
|
|
-moz-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-moz-transition-duration: 150ms;
|
|
|
|
-moz-transition-timing-function: ease;
|
2011-08-29 05:10:14 +09:00
|
|
|
}
|
|
|
|
|
2012-04-26 00:32:37 +09:00
|
|
|
.toolbarField.pageNumber {
|
2012-06-08 05:51:29 +09:00
|
|
|
min-width: 16px;
|
|
|
|
text-align: right;
|
2012-04-26 03:21:10 +09:00
|
|
|
width: 40px;
|
2012-04-26 00:32:37 +09:00
|
|
|
}
|
|
|
|
|
2012-04-26 03:10:53 +09:00
|
|
|
.toolbarField.pageNumber::-webkit-inner-spin-button,
|
|
|
|
.toolbarField.pageNumber::-webkit-outer-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarField:hover {
|
|
|
|
background-color: hsla(0,0%,100%,.11);
|
|
|
|
border-color: hsla(0,0%,0%,.4) hsla(0,0%,0%,.43) hsla(0,0%,0%,.45);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarField:focus {
|
|
|
|
background-color: hsla(0,0%,100%,.15);
|
|
|
|
border-color: hsla(204,100%,65%,.8) hsla(204,100%,65%,.85) hsla(204,100%,65%,.9);
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarLabel {
|
|
|
|
min-width: 16px;
|
|
|
|
padding: 3px 6px 3px 2px;
|
|
|
|
margin: 4px 2px 4px 0;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: 2px;
|
|
|
|
color: hsl(0,0%,85%);
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 14px;
|
|
|
|
text-align: left;
|
2012-04-18 03:10:52 +09:00
|
|
|
-webkit-user-select:none;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-user-select:none;
|
2012-04-12 08:12:51 +09:00
|
|
|
cursor: default;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#thumbnailView {
|
|
|
|
position: fixed;
|
|
|
|
width: 120px;
|
2012-04-13 07:13:58 +09:00
|
|
|
top: 33px;
|
|
|
|
bottom: 0;
|
2012-04-13 07:08:07 +09:00
|
|
|
padding: 10px 40px 0;
|
2011-08-22 11:05:10 +09:00
|
|
|
overflow: auto;
|
2011-10-29 01:16:17 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.thumbnail {
|
2012-04-13 07:08:07 +09:00
|
|
|
margin-bottom: 15px;
|
2012-04-14 06:14:05 +09:00
|
|
|
float: left;
|
2012-04-19 09:02:32 +09:00
|
|
|
width: 114px;
|
|
|
|
height: 142px;
|
2012-04-14 06:14:05 +09:00
|
|
|
}
|
|
|
|
|
2012-04-26 03:34:28 +09:00
|
|
|
.thumbnail:not([data-loaded]) {
|
|
|
|
border: 1px dashed rgba(255, 255, 255, 0.5);
|
2012-04-14 06:14:05 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.thumbnailImage {
|
|
|
|
-moz-transition-duration: 150ms;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
|
|
|
|
opacity: 0.8;
|
|
|
|
z-index: 99;
|
2011-12-22 07:22:07 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.thumbnailSelectionRing {
|
|
|
|
border-radius: 2px;
|
2012-04-14 06:14:05 +09:00
|
|
|
padding: 7px;
|
2012-04-12 08:12:51 +09:00
|
|
|
-moz-transition-duration: 150ms;
|
2011-12-22 07:22:07 +09:00
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
|
2012-05-02 01:43:48 +09:00
|
|
|
a:focus > .thumbnail > .thumbnailSelectionRing > .thumbnailImage,
|
2012-04-14 06:14:05 +09:00
|
|
|
.thumbnail:hover > .thumbnailSelectionRing > .thumbnailImage {
|
2012-04-12 08:12:51 +09:00
|
|
|
opacity: .9;
|
2011-12-22 07:22:07 +09:00
|
|
|
}
|
|
|
|
|
2012-05-02 01:43:48 +09:00
|
|
|
a:focus > .thumbnail > .thumbnailSelectionRing,
|
2012-04-12 08:12:51 +09:00
|
|
|
.thumbnail:hover > .thumbnailSelectionRing {
|
|
|
|
background-color: hsla(0,0%,100%,.15);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
background-clip: padding-box;
|
|
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
|
|
|
|
0 0 1px hsla(0,0%,100%,.2) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.2);
|
|
|
|
color: hsla(0,0%,100%,.9);
|
2011-12-22 07:22:07 +09:00
|
|
|
}
|
|
|
|
|
2012-04-14 06:14:05 +09:00
|
|
|
.thumbnail.selected > .thumbnailSelectionRing > .thumbnailImage {
|
2012-04-12 08:12:51 +09:00
|
|
|
box-shadow: 0 0 0 1px hsla(0,0%,0%,.5);
|
|
|
|
opacity: 1;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.thumbnail.selected > .thumbnailSelectionRing {
|
|
|
|
background-color: hsla(0,0%,100%,.3);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
background-clip: padding-box;
|
|
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
|
|
|
|
0 0 1px hsla(0,0%,100%,.1) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.2);
|
|
|
|
color: hsla(0,0%,100%,1);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#outlineView {
|
2011-11-29 09:55:09 +09:00
|
|
|
position: fixed;
|
2012-04-26 08:38:36 +09:00
|
|
|
width: 192px;
|
2012-04-13 07:13:58 +09:00
|
|
|
top: 33px;
|
|
|
|
bottom: 0;
|
2012-04-26 08:38:36 +09:00
|
|
|
padding: 4px 4px 0;
|
2012-04-12 08:12:51 +09:00
|
|
|
overflow: auto;
|
2012-04-18 03:10:52 +09:00
|
|
|
-webkit-user-select:none;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-user-select:none;
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.outlineItem > .outlineItems {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
|
2012-06-08 05:51:29 +09:00
|
|
|
.outlineItem > a,
|
|
|
|
#searchResults > a {
|
2011-08-22 11:05:10 +09:00
|
|
|
text-decoration: none;
|
2012-06-08 05:51:29 +09:00
|
|
|
display: inline-block;
|
|
|
|
min-width: 95%;
|
2012-04-12 08:12:51 +09:00
|
|
|
height: 20px;
|
|
|
|
padding: 2px 0 0 10px;
|
|
|
|
margin-bottom: 1px;
|
|
|
|
border-radius: 2px;
|
|
|
|
color: hsla(0,0%,100%,.8);
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 15px;
|
|
|
|
-moz-user-select:none;
|
|
|
|
cursor: default;
|
2012-04-26 08:38:36 +09:00
|
|
|
white-space: nowrap;
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-06-08 05:51:29 +09:00
|
|
|
.outlineItem > a:hover,
|
|
|
|
#searchResults > a:hover {
|
2012-04-12 08:12:51 +09:00
|
|
|
background-color: hsla(0,0%,100%,.02);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
background-clip: padding-box;
|
|
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
|
|
|
|
0 0 1px hsla(0,0%,100%,.2) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.2);
|
|
|
|
color: hsla(0,0%,100%,.9);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-06-08 05:51:29 +09:00
|
|
|
.outlineItem.selected {
|
|
|
|
background-color: hsla(0,0%,100%,.08);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
background-clip: padding-box;
|
|
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
|
|
|
|
0 0 1px hsla(0,0%,100%,.1) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.2);
|
|
|
|
color: hsla(0,0%,100%,1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.noOutline,
|
|
|
|
.noResults {
|
|
|
|
font-size: 12px;
|
|
|
|
color: hsla(0,0%,100%,.8);
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2011-12-12 10:38:20 +09:00
|
|
|
#searchScrollView {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
bottom: 10px;
|
|
|
|
left: 10px;
|
|
|
|
width: 280px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchToolbar {
|
|
|
|
padding-left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
padding-top: 0px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchToolbar > input {
|
2012-06-08 05:51:29 +09:00
|
|
|
margin-left: 4px;
|
|
|
|
width: 124px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchToolbar button {
|
|
|
|
width: auto;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 6px;
|
|
|
|
height: 22px;
|
2011-12-12 10:38:20 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#searchResults {
|
|
|
|
overflow: auto;
|
|
|
|
position: absolute;
|
|
|
|
top: 30px;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0;
|
2012-06-08 05:51:29 +09:00
|
|
|
padding: 4px 4px 0;
|
2011-12-12 10:38:20 +09:00
|
|
|
font-size: smaller;
|
|
|
|
}
|
|
|
|
|
2011-08-22 11:05:10 +09:00
|
|
|
#sidebarControls {
|
|
|
|
position:absolute;
|
2011-12-12 10:38:20 +09:00
|
|
|
width: 180px;
|
2011-08-22 11:05:10 +09:00
|
|
|
height: 32px;
|
|
|
|
left: 15px;
|
|
|
|
bottom: 35px;
|
|
|
|
}
|
|
|
|
|
2011-07-29 02:48:05 +09:00
|
|
|
canvas {
|
|
|
|
margin: auto;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page {
|
2012-05-02 09:39:24 +09:00
|
|
|
direction: ltr;
|
2011-07-29 02:48:05 +09:00
|
|
|
width: 816px;
|
|
|
|
height: 1056px;
|
|
|
|
margin: 10px auto;
|
2011-09-22 07:32:36 +09:00
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
-webkit-box-shadow: 0px 4px 10px #000;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-box-shadow: 0px 4px 10px #000;
|
|
|
|
box-shadow: 0px 4px 10px #000;
|
2011-10-20 05:14:34 +09:00
|
|
|
background-color: white;
|
2011-08-26 08:28:50 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.page > a {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page > a:hover {
|
|
|
|
opacity: 0.2;
|
|
|
|
background: #ff0;
|
|
|
|
-webkit-box-shadow: 0px 2px 10px #ff0;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-box-shadow: 0px 2px 10px #ff0;
|
|
|
|
box-shadow: 0px 2px 10px #ff0;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
|
|
|
|
2012-02-01 06:20:09 +09:00
|
|
|
.loadingIcon {
|
|
|
|
position: absolute;
|
2012-02-01 06:49:48 +09:00
|
|
|
display: block;
|
2012-02-01 06:20:09 +09:00
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2012-02-02 05:19:01 +09:00
|
|
|
background: url('images/loading-icon.gif') center no-repeat;
|
2012-02-01 06:20:09 +09:00
|
|
|
}
|
|
|
|
|
2012-04-13 08:29:15 +09:00
|
|
|
#loadingBox {
|
2012-06-08 05:51:29 +09:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -25px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2012-04-13 08:29:15 +09:00
|
|
|
text-align: center;
|
2012-04-26 06:32:26 +09:00
|
|
|
color: #ddd;
|
|
|
|
font-size: 14px;
|
2012-04-13 08:29:15 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#loadingBar {
|
|
|
|
display: inline-block;
|
|
|
|
clear: both;
|
2012-04-26 06:32:26 +09:00
|
|
|
margin: 0px;
|
|
|
|
margin-top: 5px;
|
2012-04-13 08:29:15 +09:00
|
|
|
line-height: 0;
|
2012-06-08 05:51:29 +09:00
|
|
|
border-radius: 2px;
|
2012-04-26 06:32:26 +09:00
|
|
|
width: 200px;
|
|
|
|
height: 25px;
|
2012-06-08 05:51:29 +09:00
|
|
|
|
|
|
|
background-color: hsla(0,0%,0%,.3);
|
|
|
|
background-image: -moz-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));
|
|
|
|
border: 1px solid #000;
|
|
|
|
box-shadow: 0 1px 1px hsla(0,0%,0%,.1) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.2) inset,
|
|
|
|
0 0 1px 1px rgba(255, 255, 255, 0.1);
|
2012-04-13 08:29:15 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#loadingBar .progress {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
|
2012-04-26 06:32:26 +09:00
|
|
|
background: #666;
|
2012-06-08 05:51:29 +09:00
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b2b2b2), color-stop(100%,#898989));
|
|
|
|
background: -webkit-linear-gradient(top, #b2b2b2 0%,#898989 100%);
|
2012-06-20 01:02:23 +09:00
|
|
|
background: -moz-linear-gradient(top, #b2b2b2 0%,#898989 100%);
|
2012-06-08 05:51:29 +09:00
|
|
|
background: -ms-linear-gradient(top, #b2b2b2 0%,#898989 100%);
|
2012-06-20 01:02:23 +09:00
|
|
|
background: -o-linear-gradient(top, #b2b2b2 0%,#898989 100%);
|
|
|
|
background: linear-gradient(top, #b2b2b2 0%,#898989 100%);
|
2012-04-13 08:29:15 +09:00
|
|
|
|
2012-06-08 05:51:29 +09:00
|
|
|
border-top-left-radius: 2px;
|
|
|
|
border-bottom-left-radius: 2px;
|
2012-04-13 08:29:15 +09:00
|
|
|
|
|
|
|
width: 0%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2012-04-26 06:32:26 +09:00
|
|
|
#loadingBar .progress.full {
|
2012-06-08 05:51:29 +09:00
|
|
|
border-top-right-radius: 2px;
|
|
|
|
border-bottom-right-radius: 2px;
|
2012-04-26 06:32:26 +09:00
|
|
|
}
|
|
|
|
|
2011-10-29 01:16:17 +09:00
|
|
|
.textLayer {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
color: #000;
|
2012-02-11 03:55:11 +09:00
|
|
|
font-family: sans-serif;
|
2011-10-29 01:16:17 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.textLayer > div {
|
|
|
|
color: transparent;
|
|
|
|
position: absolute;
|
|
|
|
line-height:1.3;
|
|
|
|
}
|
|
|
|
|
2012-04-13 09:57:52 +09:00
|
|
|
/* TODO: file FF bug to support ::-moz-selection:window-inactive
|
|
|
|
so we can override the opaque grey background when the window is inactive;
|
|
|
|
see https://bugzilla.mozilla.org/show_bug.cgi?id=706209 */
|
|
|
|
::selection { background:rgba(0,0,255,0.3); }
|
|
|
|
::-moz-selection { background:rgba(0,0,255,0.3); }
|
|
|
|
|
2011-12-22 07:22:07 +09:00
|
|
|
.annotComment > div {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2011-12-22 19:29:27 +09:00
|
|
|
.annotComment > img {
|
|
|
|
position: absolute;
|
2011-12-22 07:22:07 +09:00
|
|
|
}
|
|
|
|
|
2011-12-22 19:29:27 +09:00
|
|
|
.annotComment > img:hover {
|
2011-12-22 07:22:07 +09:00
|
|
|
cursor: pointer;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
2011-12-22 19:29:27 +09:00
|
|
|
.annotComment > div {
|
2011-12-22 07:22:07 +09:00
|
|
|
padding: 0.2em;
|
|
|
|
max-width: 20em;
|
|
|
|
background-color: #F1E47B;
|
2011-12-22 19:29:27 +09:00
|
|
|
-webkit-box-shadow: 0px 2px 10px #333;
|
2012-06-11 18:03:15 +09:00
|
|
|
-moz-box-shadow: 0px 2px 10px #333;
|
|
|
|
box-shadow: 0px 2px 10px #333;
|
2011-12-22 07:22:07 +09:00
|
|
|
}
|
|
|
|
|
2011-12-22 19:29:27 +09:00
|
|
|
.annotComment > div > h1 {
|
2011-12-22 07:22:07 +09:00
|
|
|
font-weight: normal;
|
|
|
|
font-size: 1.2em;
|
|
|
|
border-bottom: 1px solid #000000;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
2011-11-29 09:55:09 +09:00
|
|
|
#errorWrapper {
|
|
|
|
background: none repeat scroll 0 0 #FF5555;
|
|
|
|
color: white;
|
|
|
|
left: 0;
|
2012-04-26 09:20:13 +09:00
|
|
|
position: absolute;
|
2011-11-29 09:55:09 +09:00
|
|
|
right: 0;
|
2012-04-26 09:20:13 +09:00
|
|
|
top: 32px;
|
2011-11-29 09:55:09 +09:00
|
|
|
z-index: 1000;
|
|
|
|
padding: 3px;
|
2011-11-30 02:36:50 +09:00
|
|
|
font-size: 0.8em;
|
2011-11-29 09:55:09 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#errorMessageLeft {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errorMessageRight {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errorMoreInfo {
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
color: black;
|
|
|
|
padding: 3px;
|
|
|
|
margin: 3px;
|
2012-01-05 07:43:17 +09:00
|
|
|
width: 98%;
|
2011-11-29 09:55:09 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.clearBoth {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2012-04-18 03:10:52 +09:00
|
|
|
.fileInput {
|
|
|
|
background: white;
|
|
|
|
color: black;
|
2012-05-01 06:23:26 +09:00
|
|
|
margin-top: 5px;
|
2012-03-22 07:36:10 +09:00
|
|
|
}
|
|
|
|
|
2012-02-16 07:12:58 +09:00
|
|
|
#PDFBug {
|
2012-04-27 04:35:52 +09:00
|
|
|
background: none repeat scroll 0 0 white;
|
|
|
|
border: 1px solid #666666;
|
2012-02-14 10:35:58 +09:00
|
|
|
position: fixed;
|
2012-04-27 04:35:52 +09:00
|
|
|
top: 32px;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
font-size: 10px;
|
2012-02-14 10:35:58 +09:00
|
|
|
padding: 0;
|
2012-04-27 04:35:52 +09:00
|
|
|
width: 300px;
|
2012-02-14 10:35:58 +09:00
|
|
|
}
|
2012-02-16 07:12:58 +09:00
|
|
|
#PDFBug .controls {
|
2012-04-27 04:35:52 +09:00
|
|
|
background:#EEEEEE;
|
|
|
|
border-bottom: 1px solid #666666;
|
|
|
|
padding: 3px;
|
2012-02-14 10:35:58 +09:00
|
|
|
}
|
2012-02-16 07:12:58 +09:00
|
|
|
#PDFBug .panels {
|
2012-04-27 04:35:52 +09:00
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2012-02-14 10:35:58 +09:00
|
|
|
overflow: auto;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
2012-04-27 04:35:52 +09:00
|
|
|
top: 27px;
|
2012-02-14 10:35:58 +09:00
|
|
|
}
|
2012-02-16 07:12:58 +09:00
|
|
|
#PDFBug button.active {
|
2012-02-14 10:35:58 +09:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.debuggerShowText {
|
2012-04-27 04:35:52 +09:00
|
|
|
background: none repeat scroll 0 0 yellow;
|
2012-02-14 10:35:58 +09:00
|
|
|
color: blue;
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
.debuggerHideText:hover {
|
2012-04-27 04:35:52 +09:00
|
|
|
background: none repeat scroll 0 0 yellow;
|
2012-02-14 10:35:58 +09:00
|
|
|
opacity: 0.3;
|
2011-09-21 13:49:09 +09:00
|
|
|
}
|
2012-02-22 02:52:09 +09:00
|
|
|
#PDFBug .stats {
|
2012-04-27 04:35:52 +09:00
|
|
|
font-family: courier;
|
2012-02-22 02:52:09 +09:00
|
|
|
font-size: 10px;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
#PDFBug .stats .title {
|
2012-04-27 04:35:52 +09:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
#PDFBug table {
|
|
|
|
font-size: 10px;
|
2011-09-21 13:49:09 +09:00
|
|
|
}
|
2012-05-16 04:47:33 +09:00
|
|
|
|
2012-08-20 10:02:12 +09:00
|
|
|
#viewer.textLayer-visible .textLayer > div,
|
|
|
|
#viewer.textLayer-hover .textLayer > div:hover {
|
|
|
|
background-color: white;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
#viewer.textLayer-shadow .textLayer > div {
|
|
|
|
background-color: rgba(255,255,255, .6);
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2012-06-29 01:50:25 +09:00
|
|
|
@page {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2012-05-16 04:47:33 +09:00
|
|
|
|
2012-06-29 01:50:25 +09:00
|
|
|
#printContainer {
|
|
|
|
display: none;
|
|
|
|
}
|
2012-05-25 21:38:50 +09:00
|
|
|
|
2012-06-29 01:50:25 +09:00
|
|
|
@media print {
|
2012-07-13 02:31:20 +09:00
|
|
|
/* Rules for browsers that don't support mozPrintCallback. */
|
|
|
|
#sidebarContainer, .toolbar, #loadingBox, #errorWrapper, .textLayer {
|
2012-05-25 21:38:50 +09:00
|
|
|
display: none;
|
|
|
|
}
|
2012-07-13 02:31:20 +09:00
|
|
|
|
|
|
|
#mainContainer, #viewerContainer, .page, .page canvas {
|
|
|
|
position: static;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page {
|
|
|
|
float: left;
|
|
|
|
display: none;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page[data-loaded] {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Rules for browsers that support mozPrintCallback */
|
|
|
|
body[data-mozPrintCallback] #outerContainer {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
body[data-mozPrintCallback] #printContainer {
|
2012-05-25 21:38:50 +09:00
|
|
|
display: block;
|
|
|
|
}
|
2012-07-13 02:31:20 +09:00
|
|
|
#printContainer canvas {
|
2012-06-29 01:50:25 +09:00
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
2012-05-25 21:38:50 +09:00
|
|
|
}
|
|
|
|
|
2012-05-22 00:59:43 +09:00
|
|
|
@media all and (max-width: 950px) {
|
|
|
|
html[dir='ltr'] #outerContainer.sidebarMoving .outerCenter,
|
|
|
|
html[dir='ltr'] #outerContainer.sidebarOpen .outerCenter {
|
|
|
|
float: left;
|
|
|
|
left: 180px;
|
|
|
|
}
|
|
|
|
html[dir='rtl'] #outerContainer.sidebarMoving .outerCenter,
|
|
|
|
html[dir='rtl'] #outerContainer.sidebarOpen .outerCenter {
|
|
|
|
float: right;
|
|
|
|
right: 180px;
|
2012-05-16 04:47:33 +09:00
|
|
|
}
|
2012-05-22 00:59:43 +09:00
|
|
|
}
|
2012-05-16 04:47:33 +09:00
|
|
|
|
2012-05-22 00:59:43 +09:00
|
|
|
@media all and (max-width: 770px) {
|
2012-05-16 04:47:33 +09:00
|
|
|
#sidebarContainer {
|
|
|
|
top: 33px;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
#sidebarContent {
|
2012-05-22 00:59:43 +09:00
|
|
|
top: 32px;
|
2012-05-16 04:47:33 +09:00
|
|
|
background-color: hsla(0,0%,0%,.7);
|
|
|
|
}
|
|
|
|
#thumbnailView, #outlineView {
|
|
|
|
top: 66px;
|
|
|
|
}
|
|
|
|
|
|
|
|
html[dir='ltr'] #outerContainer.sidebarOpen > #mainContainer {
|
|
|
|
left: 0px;
|
|
|
|
}
|
|
|
|
html[dir='rtl'] #outerContainer.sidebarOpen > #mainContainer {
|
|
|
|
right: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
html[dir='ltr'] .outerCenter {
|
|
|
|
float: left;
|
|
|
|
left: 180px;
|
|
|
|
}
|
|
|
|
html[dir='rtl'] .outerCenter {
|
|
|
|
float: right;
|
|
|
|
right: 180px;
|
|
|
|
}
|
|
|
|
}
|
2012-05-22 03:08:42 +09:00
|
|
|
|
2012-05-22 00:59:43 +09:00
|
|
|
@media all and (max-width: 600px) {
|
|
|
|
#toolbarViewerRight {
|
2012-05-22 03:08:42 +09:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2012-05-24 07:10:53 +09:00
|
|
|
|
|
|
|
@media all and (max-width: 500px) {
|
|
|
|
#scaleSelectContainer, #pageNumberLabel {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|