summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/sourceeditor/test/css_statemachine_testcases.css
blob: d2c51a84133d786c3cf6c733dc260e1b940dc865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* 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/. */

.devtools-toolbar {
  -moz-appearance: none;
           padding:4px 3px;border-bottom-width: 1px;
  border-bottom-style: solid;
}

#devtools-menu.devtools-menulist,
.devtools-toolbarbutton#devtools-menu {
  -moz-appearance: none;
  align-items: center;
  min-width: 78px;
  min-height: 22px;
  text-shadow: 0 -1px 0 hsla(210,8%,5%,.45);
  border: 1px solid hsla(210,8%,5%,.45);
  border-radius: 3px;
  background: linear-gradient(hsla(212,7%,57%,.35), hsla(212,7%,57%,.1)) padding-box;
  box-shadow: 0 1px 0 hsla(210,16%,76%,.15) inset, 0 0 0 1px hsla(210,16%,76%,.15) inset, 0 1px 0 hsla(210,16%,76%,.15);
  margin: 0 3px;
  color: inherit;
}

.devtools-toolbarbutton > hbox.toolbarbutton-menubutton-button {
  flex-direction: row;
}

.devtools-menulist:active,
#devtools-toolbarbutton:focus {
  outline: 1px dotted hsla(210,30%,85%,0.7);
  outline-offset   :  -4px;
}

.devtools-toolbarbutton:not([label]) {
  min-width: 32px;
}

.devtools-toolbarbutton:not([label]) > .toolbarbutton-text {
  display: none;
}

.devtools-toolbarbutton:not([checked=true]):hover:active {
  border-color: hsla(210,8%,5%,.6);
}

.devtools-menulist["open"    ="true"],
.devtools-toolbarbutton["open"  =   true],
.devtools-toolbarbutton[checked=   "true"] {
  border-color: hsla(210,8%,5%,.6) !important;
}

.devtools-toolbarbutton["checked"="true"] {
  color: hsl(208,100%,60%);
}

.devtools-toolbarbutton[checked=true]:hover {
  background-color: transparent !important;
}

.devtools-toolbarbutton[checked=true]:hover:active {
  background-color: hsla(210,8%,5%,.2) !important;
}

.devtools-toolbarbutton[type=menu-button] > .toolbarbutton-menubutton-button {
  -moz-appearance: none;
}

.devtools-sidebar-tabs > tabs > tab:first-of-type {
  margin-inline-start: -3px;
}

.devtools-sidebar-tabs > tabs > tab:not(:last-of-type) {
  background-size: calc(100% - 2px) 100%, 1px 100%;
}

.hidden-labels-box:not(.visible) > label,
.hidden-labels-box.visible ~ .hidden-labels-box > label:last-child {
  display: none;
}

/* Maximize the size of the viewport when the window is small */
@media (max-width: 800px) {
  .category-name {
    display: none;
  }
}

@media all and (min-width: 300px) {
  #error-box {
    max-width: 50%;
    margin: 0 auto;
    background-image: url('chrome://global/skin/icons/information-32.png');
    min-height: 36px;
    padding-inline-start: 38px;
  }

  button {
    width: auto !important;
    min-width: 150px;
  }

  @keyframes downloadsIndicatorNotificationFinish {
    from { opacity: 0; transform: scale(1); }
    20%  {
      opacity: .65;
      animation-timing-function: ease-in;
    } to { opacity: 0;
      transform: scale(8); }
  }
}

@keyframes smooth {
  from { opacity: 0; transform: scale(1); }
  20%  { opacity: .65; animation-timing-function: ease-in; }
  to   {
    opacity  : 0;
    transform: scale(8);
  }
}