1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
16 html
.apps-v2
body:not
(.fullscreen
) {
17 border: 1px solid gray
; /* This is the window border. */
23 background-color: #c4c4c4;
26 .window-controls-and-title {
35 .title-bar .window-title {
36 padding-__MSG_@@
bidi_start_edge__: 12px;
38 display: inline-block
;
42 .title-bar:not(.menu-opened) .window-title {
43 -webkit-app-region: drag
;
52 display: inline-block
;
55 .window-control > span.menu-button-activator {
56 display: inline-block
;
61 .window-control:hover {
62 background-color: #d5d5d5;
65 .window-control:active {
66 background-color: #a6a6a6;
73 .window-controls-stub {
76 background: url
("drag.webp");
77 background-position: 2px 1px;
87 html
.apps-v2
.window-body
{
88 height: calc
(100% - 32px); /* Allow space for the title-bar */
91 /* Add an etched border to the window controls, title bar and stub */
94 .window-controls-stub {
99 .window-control::after
,
100 .window-controls-stub::after {
107 border-right: 1px solid rgba
(0, 0, 0, 0.2);
108 border-top: 1px solid rgba
(255, 255, 255, 0.2);
109 border-bottom: 1px solid rgba
(0, 0, 0, 0.3); /* darken bottom slightly */
110 border-left: 1px solid rgba
(255, 255, 255, 0.2);
111 pointer-events: none
;
112 box-sizing: border-box
;
115 /* Remove dark borders for elements that are adjacent an existing border. */
116 .window-close::after {
120 .window-controls-stub::after {
125 /* The Disconnect, full-screen and options buttons are only displayed when
127 body:not
(.connected
) .window-disconnect
,
128 body:not
(.connected
) .window-fullscreen
,
129 body:not
(.connected
) .window-options
{
135 * When in full-screen mode, significant changes are made:
136 * - The scroll-bars are removed.
137 * - The window controls have a border (so the left-border of the first button
139 * - The window title is not displayed.
140 * - The stub is visible.
141 * - The window controls gain transition effects for position and opacity and
142 * auto-hide behind the top edge of the screen.
143 * - A border is added to the window controls to ensure they stand out against
145 * - The window border is removed.
146 * - The full-screen button is removed.
149 html
.apps-v2 body
.fullscreen #scroller
{
153 html
.apps-v2 body
.fullscreen
.window-body
{
157 body
.fullscreen
.title-bar
{
158 border: 1px solid
#a6a6a6;
161 body
.fullscreen
.window-title
{
165 body
.fullscreen
.title-bar
{
167 width: initial
; /* Override the 100% width when windowed. */
170 body
.fullscreen
.window-controls-and-title
{
171 display: inline-flex
;
174 body
.fullscreen
.window-controls-stub
{
178 body
.fullscreen
.title-bar
{
179 transition-property: opacity
, box-shadow
, top
;
180 transition-duration: 0.3s;
183 __MSG_@@
bidi_end_edge__: 8px;
186 body
.fullscreen
.title-bar:hover
,
187 body
.fullscreen
.title-bar
.menu-opened
,
188 body
.fullscreen
.title-bar
.opened
,
189 body
.fullscreen
.title-bar
.preview
{
192 box-shadow: 1px 1px 10px rgba
(0, 0, 0, 0.5);
195 .fullscreen .title-bar.opened .window-controls-stub {
196 background-color: #a6a6a6;
199 body
.fullscreen
.window-fullscreen
{