This repository was archived by the owner on Jun 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +28
-5
lines changed Expand file tree Collapse file tree 2 files changed +28
-5
lines changed Original file line number Diff line number Diff line change
1
+ 2019-01-14 Devin Rousso <
[email protected] >
2
+
3
+ Web Inspector: Settings: group titles should vertically align with the first editor
4
+ https://bugs.webkit.org/show_bug.cgi?id=193391
5
+
6
+ Reviewed by Dean Jackson.
7
+
8
+ * UserInterface/Views/SettingsTabContentView.css:
9
+ (.content-view.settings > .settings-view > .container):
10
+ (.content-view.settings > .settings-view > .container > .editor-group > .editor): Added.
11
+ (.content-view.settings > .settings-view > .container > .editor-group > .editor:first-child > *): Added.
12
+ (.content-view.settings > .settings-view > .container > .editor-group > .editor select):
13
+ (.content-view.settings > .settings-view > .container > .editor-group > .editor input[type="number"]):
14
+
1
15
2019-01-11 Matt Baker <
[email protected] >
2
16
3
17
Web Inspector: REGRESSION: deleting an audit puts selection in a selected but invisible state
Original file line number Diff line number Diff line change 55
55
56
56
.content-view .settings > .settings-view > .container {
57
57
display : flex;
58
- align-items : center;
59
58
margin-top : 1em ;
60
59
font-size : 13px ;
61
60
}
85
84
flex-direction : column;
86
85
}
87
86
87
+ .content-view .settings > .settings-view > .container > .editor-group > .editor {
88
+ --settings-editor-child-margin-top : 0 ;
89
+ }
90
+
91
+ .content-view .settings > .settings-view > .container > .editor-group > .editor : first-child > * {
92
+ margin-top : var (--settings-editor-child-margin-top );
93
+ }
94
+
88
95
.content-view .settings > .settings-view > .container > .editor-group > .editor input {
89
96
font-size : inherit;
90
97
}
103
110
font-size : 16px ;
104
111
105
112
/* Vertically align <select> with the group title text. */
106
- margin-top : 0 ;
113
+ --settings-editor-child- margin-top: -2 px ;
107
114
}
108
115
109
116
.content-view .settings > .settings-view > .container > .editor-group > .editor input [type = "number" ] {
110
- /* Vertically align <input> with the group title text. */
111
- margin-top : -1px ;
112
-
113
117
max-width : 48px ;
118
+ padding-top : 0 ;
119
+ padding-bottom : 0 ;
114
120
text-align : end;
121
+ vertical-align : 1px ;
115
122
123
+ /* Vertically align <input> with the group title text. */
124
+ --settings-editor-child-margin-top : -2px ;
116
125
--settings-input-number-margin-start : 2px ;
117
126
--settings-input-number-margin-end : 5px ;
118
127
}
You can’t perform that action at this time.
0 commit comments