browser/themes/osx/devtools/font-inspector.css

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/themes/osx/devtools/font-inspector.css	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,78 @@
     1.4 +* {
     1.5 +  box-sizing: border-box;
     1.6 +}
     1.7 +
     1.8 +body {
     1.9 +  margin: 0;
    1.10 +  padding-bottom: 20px;
    1.11 +}
    1.12 +
    1.13 +#all-fonts {
    1.14 +  padding: 0;
    1.15 +  margin: 0;
    1.16 +}
    1.17 +
    1.18 +#showall {
    1.19 +  border-radius: 0;
    1.20 +  border: 1px solid black;
    1.21 +  margin: 3px;
    1.22 +  cursor: pointer;
    1.23 +  position: fixed;
    1.24 +  bottom: 0;
    1.25 +  right: 0;
    1.26 +}
    1.27 +
    1.28 +.font {
    1.29 +  padding: 10px 10px;
    1.30 +}
    1.31 +
    1.32 +.theme-dark .font {
    1.33 +  border-bottom: 1px solid #444;
    1.34 +}
    1.35 +
    1.36 +.theme-light .font {
    1.37 +  border-bottom: 1px solid #DDD;
    1.38 +}
    1.39 +
    1.40 +.font:last-of-type {
    1.41 +  border-bottom: 0;
    1.42 +}
    1.43 +
    1.44 +.theme-light .font:nth-child(even) {
    1.45 +  background: #F4F4F4;
    1.46 +}
    1.47 +
    1.48 +.font-preview {
    1.49 +  height: 60px;
    1.50 +  width: 100%;
    1.51 +  border: 0;
    1.52 +  display: block;
    1.53 +}
    1.54 +
    1.55 +.font-info {
    1.56 +  display: block;
    1.57 +}
    1.58 +
    1.59 +.font-name {
    1.60 +  display: inline;
    1.61 +}
    1.62 +
    1.63 +.font-css-code {
    1.64 +  max-width: 100%;
    1.65 +  overflow: hidden;
    1.66 +  text-overflow: ellipsis;
    1.67 +  padding: 5px;
    1.68 +}
    1.69 +
    1.70 +.theme-light .font-css-code,
    1.71 +.theme-light .font-url {
    1.72 +  border: 1px solid #CCC;
    1.73 +  background: white;
    1.74 +}
    1.75 +
    1.76 +.theme-dark .font-css-code,
    1.77 +.theme-dark .font-url {
    1.78 +  border: 1px solid #333;
    1.79 +  background: black;
    1.80 +  color: white;
    1.81 +}

mercurial