browser/themes/osx/preferences/aboutPermissions.css

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 /* This Source Code Form is subject to the terms of the Mozilla Public
     2  * License, v. 2.0. If a copy of the MPL was not distributed with this
     3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     5 @import url("chrome://global/skin/inContentUI.css");
     8 /* sites box */
    10 #sites-box {
    11   padding: 10px;
    12   width: 25em;
    13 }
    15 #sites-filter {
    16   margin: 0;
    17 }
    19 #sites-list {
    20   -moz-appearance: none;
    21   border: 1px solid rgba(60,73,97,0.5);
    22   box-shadow: inset 0 1px 1px rgba(0,0,0,0.15), 0 1px rgba(255,255,255,0.25);
    23   background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.3));
    24   margin: 5px 0 0 0;
    25 }
    27 .site {
    28   padding: 4px;
    29   border-bottom: 1px solid ThreeDLightShadow;
    30 }
    32 .site-favicon {
    33   height: 16px;
    34   width: 16px;
    35   -moz-margin-end: 4px;
    36   list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
    37 }
    39 @media (min-resolution: 2dppx) {
    40   .site-favicon {
    41     list-style-image: url("chrome://mozapps/skin/places/defaultFavicon@2x.png");
    42   }
    43 }
    45 #all-sites-item > .site-container > .site-favicon {
    46   list-style-image: none;
    47 }
    49 /* permissions box */
    51 #permissions-box {
    52   padding: 10px;
    53   overflow-y: auto;
    54 }
    56 #site-description {
    57   font-size: 125%;
    58   -moz-margin-start: 6px; /* to match button margin */
    59 }
    61 #site-label {
    62   font-weight: bold;
    63   margin-top: 0;
    64   margin-bottom: 0;
    65 }
    67 #defaults-description {
    68   font-size: 125%;
    69   font-weight: bold;
    70   -moz-margin-start: 6px;
    71 }
    73 .pref-item {
    74   margin-bottom: 10px;
    75 }
    77 .pref-icon {
    78   width: 36px;
    79   height: 36px;
    80   -moz-margin-end: 10px;
    81 }
    83 .pref-icon[type="password"] {
    84   list-style-image: url(chrome://mozapps/skin/passwordmgr/key-64.png);
    85 }
    86 .pref-icon[type="cookie"] {
    87   list-style-image: url(chrome://global/skin/icons/question-64.png);
    88 }
    89 .pref-icon[type="geo"] {
    90   list-style-image: url(chrome://browser/skin/Geolocation-64.png);
    91 }
    92 .pref-icon[type="indexedDB"] {
    93   list-style-image: url(chrome://global/skin/icons/question-64.png);
    94 }
    95 .pref-icon[type="install"] {
    96   list-style-image: url(chrome://mozapps/skin/extensions/extensionGeneric.png);
    97 }
    98 .pref-icon[type="popup"] {
    99   list-style-image: url(chrome://global/skin/icons/question-64.png);
   100 }
   101 .pref-icon[type="image"] {
   102   list-style-image: url(chrome://global/skin/icons/question-64.png);
   103 }
   104 .pref-icon[type="plugins"] {
   105   list-style-image: url(chrome://mozapps/skin/plugins/pluginGeneric.png);
   106 }
   107 .pref-icon[type="fullscreen"] {
   108   list-style-image: url(chrome://global/skin/icons/question-64.png);
   109 }
   110 .pref-icon[type="camera"] {
   111   list-style-image: url(chrome://global/skin/icons/question-64.png);
   112 }
   113 .pref-icon[type="microphone"] {
   114   list-style-image: url(chrome://global/skin/icons/question-64.png);
   115 }
   117 @media (min-resolution: 2dppx) {
   118   .pref-icon[type="geo"] {
   119     list-style-image: url(chrome://browser/skin/Geolocation-64@2x.png);
   120   }
   121 }
   123 .pref-title {
   124   font-size: 125%;
   125   margin-bottom: 0;
   126   font-weight: bold;
   127 }
   129 .pref-menulist {
   130   margin-left: 6px;
   131   margin-right: 6px;
   132 }

mercurial