diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /comm/suite/themes/classic/mac/navigator/pageInfo.css | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'comm/suite/themes/classic/mac/navigator/pageInfo.css')
-rw-r--r-- | comm/suite/themes/classic/mac/navigator/pageInfo.css | 183 |
1 files changed, 183 insertions, 0 deletions
diff --git a/comm/suite/themes/classic/mac/navigator/pageInfo.css b/comm/suite/themes/classic/mac/navigator/pageInfo.css new file mode 100644 index 0000000000..3e912719da --- /dev/null +++ b/comm/suite/themes/classic/mac/navigator/pageInfo.css @@ -0,0 +1,183 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +@import "chrome://global/skin/global.css"; + +#main-window { + width: 600px !important; + height: 530px !important; +} + +#dragbox { + -moz-window-dragging: drag; + min-height: 20px; + -moz-appearance: toolbar; + -moz-box-align: center; +} + +#tabbox { + margin: 0; + -moz-appearance: none; + padding: 0; +} + +#tabs { + padding: 1px; + margin: 3px 0 8px; +} + +tab { + -moz-appearance: toolbarbutton; + -moz-box-orient: vertical; + text-shadow: 0 1px rgba(255, 255, 255, 0.4); + margin: 0; +} + +tab[selected=true] { + color: #FFFFFF; + text-shadow: 0 1px rgba(0, 0, 0, 0.4); +} + +.tab-middle { + padding: 0; +} + +.tab-icon { + display: none; +} + +#mainDeck { + -moz-appearance: none; +} + +/* Misc */ +tree { + margin: .5em; +} + +.gridSeparator { + width: .5em; +} + +textbox { + background: transparent !important; + border: none; + padding: 0px; + margin-top: 1px; + -moz-appearance: none; + -moz-user-focus: none; +} + +textbox.header { + margin-inline-start: 0; +} + +.iframe { + margin: .5em; + background: white; + overflow: auto; +} + +.fixedsize { + height: 8.5em; +} + +textbox[disabled] { + font-style: italic; +} + +/* General Tab */ +#metatree { + margin: 0; +} + +#metaTags > .groupbox-body { + padding: 0; +} + +#general-security-identity { + white-space: pre-wrap; + line-height: 2em; +} + +/* Media Tab */ +#imagetree { + min-height: 10em; +} + +#mediaGrid { + min-height: 9em; +} + +#mediaLabelColumn { + min-width: 10em; +} + +#thepreviewimage { + margin: 1em; +} + +treechildren::-moz-tree-cell-text(broken) { + font-style: italic; + color: graytext; +} + +/* Feeds Tab */ +#feedListbox > richlistitem { + padding-top: 6px; + padding-bottom: 6px; + padding-inline-start: 7px; + padding-inline-end: 7px; + min-height: 25px; + border-bottom: 1px dotted #C0C0C0; +} + +.feedTitle { + font-weight: bold; +} + +/* Permissions Tab */ +#permList { + margin-top: .5em; + overflow: auto; +} + +#permList > richlistitem { + padding-top: 6px; + padding-bottom: 6px; + padding-inline-start: 7px; + padding-inline-end: 7px; + min-height: 25px; + border-bottom: 1px dotted #C0C0C0; +} + +#permList > richlistitem > label { + font-weight: bold; +} + +/* Security Tab */ +#security-technical-longform1, +#security-technical-longform2 { + margin-inline-start: 6px; +} + +.fieldValue { + font-weight: bold; +} + +#identity-icon { + width: 64px; + height: 64px; + max-height: 64px; + list-style-image: url("chrome://navigator/skin/icons/identity.png"); + -moz-image-region: rect(0px, 64px, 64px, 0px); +} + +#identity-icon.verifiedDomain { + -moz-image-region: rect(64px, 64px, 128px, 0px); +} + +#identity-icon.verifiedIdentity { + -moz-image-region: rect(128px, 64px, 192px, 0px); +} |