c9d60999d8
- added 8px padding around text on linux. Mac and win already have some padding around text through --panel-padding. Fixes: zotero#4187 - guidancePanel.js fetches text from .ftl file instead of zotero.properties - added first-run-guidance-quickFormat to zotero.ftl with updated text to better reflect current functionality. Fixes: zotero#4191 - removed unnecessary special treatment for qf guidance panel on mac - moved guidance panel text for itemBox creator menu into zotero.ftl --------- strings tweaked by @dstillman
59 lines
1.2 KiB
SCSS
59 lines
1.2 KiB
SCSS
guidance-panel {
|
|
.panel-container {
|
|
width: 400px;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 1.1em;
|
|
padding: 8px 0;
|
|
@media (-moz-platform: linux) {
|
|
padding: 8px;
|
|
}
|
|
}
|
|
|
|
#nav-buttons {
|
|
-moz-box-align: end;
|
|
-moz-box-pack: end;
|
|
}
|
|
|
|
#nav-buttons > toolbarbutton {
|
|
-moz-appearance: none; /* Necessary on Linux for button to be shown */
|
|
width: 22px;
|
|
height: 22px;
|
|
border: 1px solid lightgray;
|
|
border-radius: 3px;
|
|
background-position: 5px 5px;
|
|
background-size: 10px;
|
|
background-repeat: no-repeat;
|
|
margin: 0;
|
|
margin-bottom: -7px;
|
|
}
|
|
|
|
#nav-buttons > toolbarbutton:hover {
|
|
border-color: var(--toolbarbutton-hover-bordercolor);
|
|
box-shadow: var(--toolbarbutton-hover-boxshadow);
|
|
}
|
|
|
|
#nav-buttons > toolbarbutton:active:hover {
|
|
border-color: var(--toolbarbutton-active-bordercolor);
|
|
box-shadow: var(--toolbarbutton-active-boxshadow);
|
|
transition-duration: 10ms;
|
|
}
|
|
|
|
#back-button {
|
|
background-image: url("chrome://zotero/skin/chevron-left_808080_32.png");
|
|
}
|
|
|
|
#forward-button {
|
|
margin-right: -16px;
|
|
background-image: url("chrome://zotero/skin/chevron-right_808080_32.png");
|
|
}
|
|
|
|
#close-button-box {
|
|
-moz-box-align: start;
|
|
-moz-box-pack: end;
|
|
}
|
|
|
|
#close-button {
|
|
margin: -16px -16px;
|
|
}
|
|
}
|