1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/commandline/commandline.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,79 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +.gcli-help-name { 1.9 + text-align: end; 1.10 +} 1.11 + 1.12 +.gcli-out-shortcut, 1.13 +.gcli-help-synopsis { 1.14 + cursor: pointer; 1.15 + display: inline-block; 1.16 +} 1.17 + 1.18 +.gcli-out-shortcut:before, 1.19 +.gcli-help-synopsis:before { 1.20 + content: '\bb'; 1.21 +} 1.22 + 1.23 +.gcli-menu-template { 1.24 + white-space: nowrap; 1.25 + width: 290px; 1.26 + display: flex; 1.27 +} 1.28 + 1.29 +.gcli-menu-names { 1.30 + white-space: nowrap; 1.31 + flex-grow: 0; 1.32 + flex-shrink: 0; 1.33 +} 1.34 + 1.35 +.gcli-menu-descs { 1.36 + flex-grow: 1; 1.37 + flex-shrink: 1; 1.38 +} 1.39 + 1.40 +.gcli-menu-name, 1.41 +.gcli-menu-desc { 1.42 + white-space: nowrap; 1.43 +} 1.44 + 1.45 +.gcli-menu-name { 1.46 + -moz-padding-end: 10px; 1.47 +} 1.48 + 1.49 +.gcli-menu-desc { 1.50 + text-overflow: ellipsis; 1.51 + overflow: hidden; 1.52 +} 1.53 + 1.54 +.gcli-menu-name, 1.55 +.gcli-out-shortcut, 1.56 +.gcli-help-synopsis { 1.57 + direction: ltr; 1.58 +} 1.59 + 1.60 +.gcli-cookielist-list { 1.61 + list-style-type: none; 1.62 + padding-left: 0; 1.63 +} 1.64 + 1.65 +.gcli-cookielist-detail { 1.66 + padding-left: 20px; 1.67 + padding-bottom: 10px; 1.68 +} 1.69 + 1.70 +.gcli-appcache-list { 1.71 + list-style-type: none; 1.72 + padding-left: 0; 1.73 +} 1.74 + 1.75 +.gcli-appcache-detail { 1.76 + padding-left: 20px; 1.77 + padding-bottom: 10px; 1.78 +} 1.79 + 1.80 +.gcli-row-out .nowrap { 1.81 + white-space: nowrap; 1.82 +}