blob: b2038b9f1940f6b8a6fa890542ceaa23e14f645b (
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
|
/* Copyright (c) 2013 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
quad-stack-view {
display: block;
float: left;
height: 100%;
overflow: hidden;
position: relative; /* For the absolute positioned mouse-mode-selector */
width: 100%;
}
quad-stack-view > #chrome-left {
content: url('../images/chrome-left.png');
display: none;
}
quad-stack-view > #chrome-mid {
content: url('../images/chrome-mid.png');
display: none;
}
quad-stack-view > #chrome-right {
content: url('../images/chrome-right.png');
display: none;
}
|