Skip to content

Commit 470f65d

Browse files
committed
Unprefixed -o-{transform,transition,linear-gradient}.
1 parent 27b8702 commit 470f65d

File tree

17 files changed

+259
-32
lines changed

17 files changed

+259
-32
lines changed

src/client-en.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
background: #e6e6e6 repeat-x -o-linear-gradient(-90deg,
1111
rgba(255, 255, 255, 0.75) 0,
1212
rgba(255, 255, 255, 0.25) 100%);
13+
background: #e6e6e6 repeat-x linear-gradient(rgba(255, 255, 255, 0.75) 0,
14+
rgba(255, 255, 255, 0.25) 100%);
1315
border-radius: 3px;
1416
line-height: 19px;
1517
margin: 0 3px;
@@ -28,6 +30,8 @@
2830
background-image: -o-linear-gradient(-90deg,
2931
rgba(255, 255, 255, 0.45) 0,
3032
rgba(255, 255, 255, 0.25) 100%);
33+
background-image: linear-gradient(rgba(255, 255, 255, 0.45) 0,
34+
rgba(255, 255, 255, 0.25) 100%);
3135
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3),
3236
inset 0 1px 3px rgba(0, 0, 0, 0.35);
3337
}

src/console-logger/consolelogger_style.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,13 @@
3838
padding: 0;
3939
cursor: pointer;
4040
-o-transition: -o-transform 0.2s;
41+
transition: -o-transform 0.2s;
4142
}
4243

4344
.errors-table > tr.expanded .expander
4445
{
4546
-o-transform: rotate(90deg);
47+
transform: rotate(90deg);
4648
}
4749

4850
.errors-table .expand_cell

src/network/network_style.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,14 @@
3838

3939
.network-main-container #graph
4040
{
41-
background-image: -o-linear-gradient(0deg, #e5e5e5 0px, #e5e5e5 1px, transparent 1px);
41+
background-image: -o-linear-gradient(0deg,
42+
#e5e5e5 0px,
43+
#e5e5e5 1px,
44+
transparent 1px);
45+
background-image: linear-gradient(90deg,
46+
#e5e5e5 0px,
47+
#e5e5e5 1px,
48+
transparent 1px);
4249
background-position: 0 21px;
4350
background-repeat: repeat-x;
4451
}
@@ -548,4 +555,4 @@ pre.network-body
548555
/* work-around CORE-46966: Big pre element breaks layout in a table */
549556
float: left;
550557
margin-right: -10000000px;
551-
}
558+
}

src/network/network_templates.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,13 @@ templates.network_graph_sections = function(entry, width, duration, do_tooltip)
366366
"rgba(255, 255, 255, 0.25) 100%), " +
367367
"-o-linear-gradient(0deg," +
368368
templates.network_graph_sections_style(entry, width, duration) +
369+
");" +
370+
"background-image: " +
371+
"linear-gradient(0deg," +
372+
"transparent 0%," +
373+
"rgba(255, 255, 255, 0.25) 100%), " +
374+
"linear-gradient(-90deg," +
375+
templates.network_graph_sections_style(entry, width, duration) +
369376
");"
370377
];
371378
};
@@ -459,6 +466,9 @@ templates.network_graph_tooltip = function(entry, mono_lineheight)
459466
"style", "height: " + HEIGHT + "px; " +
460467
"background-image: -o-linear-gradient(270deg," +
461468
templates.network_graph_sections_style(entry, HEIGHT, duration) +
469+
");" +
470+
"background-image: linear-gradient(180deg," +
471+
templates.network_graph_sections_style(entry, HEIGHT, duration) +
462472
");",
463473
"class", "network-tooltip-graph"
464474
],

src/profiler/profiler_templates.js

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -251,10 +251,14 @@ var ProfilerTemplates = function()
251251
"width: " + interval + "px;" +
252252
"left: " + event_start + "px;" +
253253
"top:" + ((column * BAR_HEIGHT) + 1) + "px;" +
254-
"background-image: -o-linear-gradient(90deg, transparent 0, rgba(255,255,255,.25) 100%), " +
255-
"-o-linear-gradient(0, " + color + " 0, " +
256-
color + " " + self_time + "px, " +
257-
"transparent " + self_time + "px);",
254+
"background-image: -o-linear-gradient(90deg, transparent 0, rgba(255, 255, 255, .25) 100%), " +
255+
"-o-linear-gradient(0deg, " + color + " 0, " +
256+
color + " " + self_time + "px, " +
257+
"transparent " + self_time + "px); " +
258+
"background-image: linear-gradient(0deg, transparent 0, rgba(255, 255, 255, .25) 100%), " +
259+
"linear-gradient(-90deg, " + color + " 0, " +
260+
color + " " + self_time + "px, " +
261+
"transparent " + self_time + "px);",
258262
"class", "profiler-event profiler-event-interval event-type-" + event.type +
259263
(event.eventID == selected_id ? " selected" : "") +
260264
(is_expandable ? " expandable" : " non-expandable"),
@@ -472,10 +476,14 @@ var ProfilerTemplates = function()
472476
["div",
473477
"style",
474478
"width: " + WIDTH + "px; " +
475-
"background-image: -o-linear-gradient(90deg, transparent 0, rgba(255,255,255,.25) 100%), " +
476-
"-o-linear-gradient(0, " + color + " 0, " +
477-
color + " " + self_time + "px, " +
478-
"transparent " + self_time + "px);",
479+
"background-image: -o-linear-gradient(90deg, transparent 0, rgba(255, 255, 255, .25) 100%), " +
480+
"-o-linear-gradient(0deg, " + color + " 0, " +
481+
color + " " + self_time + "px, " +
482+
"transparent " + self_time + "px);" +
483+
"background-image: linear-gradient(0deg, transparent 0, rgba(255, 255, 255, .25) 100%), " +
484+
"linear-gradient(-90deg, " + color + " 0, " +
485+
color + " " + self_time + "px, " +
486+
"transparent " + self_time + "px);",
479487
"class", "profiler-event profiler-event-interval event-type-" + event.type
480488
]
481489
);

src/resource-manager/resource_style.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,12 @@
122122

123123
.highlighted-line
124124
{
125-
background-image: -o-linear-gradient(90deg,
125+
background-image: -o-linear-gradient(90deg,
126126
#d4e3f4,
127127
#d4e3f4);
128+
background-image: linear-gradient(180deg,
129+
#d4e3f4,
130+
#d4e3f4);
128131
background-repeat: no-repeat;
129132
}
130133

src/searches/style.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
background-image: -o-linear-gradient(-90deg,
2828
#fce703 30%,
2929
#fcbe03 100%);
30+
background-image: linear-gradient(#fce703 30%,
31+
#fcbe03 100%);
3032
border-color: #ceba73;
3133
border-top-color: #dbd3ad;
3234
border-bottom-color: #c7b267;

src/shortcutconfig/style.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
height: 7px;
2727
opacity: 0.66;
2828
-o-transition: 0.2s;
29+
transition: 0.2s;
2930
}
3031

3132
.shortcuts-config filter

src/ui-scripts/ruler/style.css

Lines changed: 115 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,31 @@
5353
right: 14px;
5454
height: 40px;
5555
background-image:
56-
-o-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px),
57-
-o-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px),
58-
-o-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px);
56+
-o-linear-gradient(0deg,
57+
#fff 0,
58+
#fff 1px,
59+
transparent 1px),
60+
-o-linear-gradient(0deg,
61+
#fff 0,
62+
#fff 1px,
63+
transparent 1px),
64+
-o-linear-gradient(0deg,
65+
#fff 0,
66+
#fff 1px,
67+
transparent 1px);
68+
background-image:
69+
linear-gradient(90deg,
70+
#fff 0,
71+
#fff 1px,
72+
transparent 1px),
73+
linear-gradient(90deg,
74+
#fff 0,
75+
#fff 1px,
76+
transparent 1px),
77+
linear-gradient(90deg,
78+
#fff 0,
79+
#fff 1px,
80+
transparent 1px);
5981
background-position: 0 37px, 0 34px, 0 31px;
6082
background-repeat: repeat-x;
6183
}
@@ -68,12 +90,34 @@
6890
right: 14px;
6991
height: 15px;
7092
background-image:
71-
-o-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px),
72-
-o-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px),
73-
-o-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px);
93+
-o-linear-gradient(0deg,
94+
#fff 0,
95+
#fff 1px,
96+
transparent 1px),
97+
-o-linear-gradient(0deg,
98+
#fff 0,
99+
#fff 1px,
100+
transparent 1px),
101+
-o-linear-gradient(0deg,
102+
#fff 0,
103+
#fff 1px,
104+
transparent 1px);
105+
background-image:
106+
linear-gradient(90deg,
107+
#fff 0,
108+
#fff 1px,
109+
transparent 1px),
110+
linear-gradient(90deg,
111+
#fff 0,
112+
#fff 1px,
113+
transparent 1px),
114+
linear-gradient(90deg,
115+
#fff 0,
116+
#fff 1px,
117+
transparent 1px);
74118
background-position: 0 0;
75119
background-repeat: repeat-x;
76-
}
120+
}
77121

78122
.ruler-left-scale
79123
{
@@ -83,9 +127,31 @@
83127
bottom: 14px;
84128
width: 40px;
85129
background-image:
86-
-o-linear-gradient(-90deg, #fff 0, #fff 1px, transparent 1px),
87-
-o-linear-gradient(-90deg, #fff 0, #fff 1px, transparent 1px),
88-
-o-linear-gradient(-90deg, #fff 0, #fff 1px, transparent 1px);
130+
-o-linear-gradient(-90deg,
131+
#fff 0,
132+
#fff 1px,
133+
transparent 1px),
134+
-o-linear-gradient(-90deg,
135+
#fff 0,
136+
#fff 1px,
137+
transparent 1px),
138+
-o-linear-gradient(-90deg,
139+
#fff 0,
140+
#fff 1px,
141+
transparent 1px);
142+
background-image:
143+
linear-gradient(180deg,
144+
#fff 0,
145+
#fff 1px,
146+
transparent 1px),
147+
linear-gradient(180deg,
148+
#fff 0,
149+
#fff 1px,
150+
transparent 1px),
151+
linear-gradient(180deg,
152+
#fff 0,
153+
#fff 1px,
154+
transparent 1px);
89155
background-position: 37px 0, 34px 0, 31px 0;
90156
background-repeat: repeat-y;
91157
}
@@ -98,9 +164,31 @@
98164
bottom: 14px;
99165
width: 15px;
100166
background-image:
101-
-o-linear-gradient(-90deg, #fff 0, #fff 1px, transparent 1px),
102-
-o-linear-gradient(-90deg, #fff 0, #fff 1px, transparent 1px),
103-
-o-linear-gradient(-90deg, #fff 0, #fff 1px, transparent 1px);
167+
-o-linear-gradient(-90deg,
168+
#fff 0,
169+
#fff 1px,
170+
transparent 1px),
171+
-o-linear-gradient(-90deg,
172+
#fff 0,
173+
#fff 1px,
174+
transparent 1px),
175+
-o-linear-gradient(-90deg,
176+
#fff 0,
177+
#fff 1px,
178+
transparent 1px);
179+
background-image:
180+
linear-gradient(180deg,
181+
#fff 0,
182+
#fff 1px,
183+
transparent 1px),
184+
linear-gradient(180deg,
185+
#fff 0,
186+
#fff 1px,
187+
transparent 1px),
188+
linear-gradient(180deg,
189+
#fff 0,
190+
#fff 1px,
191+
transparent 1px);
104192
background-position: 0 0;
105193
background-repeat: repeat-y;
106194
}
@@ -162,12 +250,25 @@
162250
#fff 5px,
163251
#fff 7px,
164252
transparent 7px),
165-
-o-linear-gradient(-45deg,
253+
-o-linear-gradient(-45deg,
166254
transparent 0,
167255
transparent 5px,
168256
#fff 5px,
169257
#fff 7px,
170258
transparent 7px);
259+
background-image:
260+
linear-gradient(45deg,
261+
transparent 0,
262+
transparent 5px,
263+
#fff 5px,
264+
#fff 7px,
265+
transparent 7px),
266+
linear-gradient(-45deg,
267+
transparent 0,
268+
transparent 5px,
269+
#fff 5px,
270+
#fff 7px,
271+
transparent 7px);
171272
background-size: 9px 8px;
172273
background-position: 4px 3px;
173274
background-repeat: no-repeat;

src/ui-scripts/sortable_table/sortable_table.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,12 @@ th.sort-column
111111
.sortable-table > tr.header,
112112
.sortable-table > tr.header:hover
113113
{
114-
115114
background-color: #e9e9e9;
116115
background-image: -o-linear-gradient(-90deg,
117116
rgba(255, 255, 255, 0.85) 0,
118117
rgba(255, 255, 255, 0.25) 100%);
118+
background-image: linear-gradient(rgba(255, 255, 255, 0.85) 0,
119+
rgba(255, 255, 255, 0.25) 100%);
119120
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
120121
font-weight: normal;
121122
}

0 commit comments

Comments
 (0)