Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(396)

Side by Side Diff: remoting/webapp/html/window_frame.html

Issue 339613003: Remove the blue tool-bar for apps v2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use classes for help and feedback elements. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!-- 1 <!--
2 Copyright 2014 The Chromium Authors. All rights reserved. 2 Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 <div id="title-bar" class="title-bar apps-v2-only"> 6 <div id="title-bar" class="title-bar apps-v2-only">
7 <span class="window-title">&nbsp;</span> 7 <span class="window-title">&nbsp;</span>
8 <span class="window-controls-hover-target"> 8 <span class="window-controls-hover-target">
9 <div class="window-controls"> 9 <div class="window-controls">
10 <span i18n-title="OPTIONS_MENU"
11 class="window-control window-options menu-button">
12 <img src="icon_options.webp"
13 class="menu-button-activator window-options-activator">
14 <ul class="window-options-menu right-align">
15 <li class="menu-send-ctrl-alt-del"
16 i18n-content="SEND_CTRL_ALT_DEL"></li>
17 <li class="menu-send-print-screen"
18 i18n-content="SEND_PRINT_SCREEN"></li>
19 <li class="menu-separator"></li>
20 <li class="menu-resize-to-client"
21 i18n-content="RESIZE_TO_CLIENT"></li>
22 <li class="menu-shrink-to-fit"
23 i18n-content="SHRINK_TO_FIT"></li>
24 <li class="menu-separator"></li>
25 <li class="menu-help"
26 i18n-content="HELP"></li>
27 <li class="menu-feedback"
28 i18n-content="ACTIONBAR_FEEDBACK"></li>
29 </ul>
30 </span>
10 <span i18n-title="DISCONNECT_MYSELF_BUTTON" 31 <span i18n-title="DISCONNECT_MYSELF_BUTTON"
11 class="window-control window-disconnect"> 32 class="window-control window-disconnect">
12 <img src="icon_disconnect.webp"> 33 <img src="icon_disconnect.webp">
13 </span> 34 </span>
14 <span i18n-title="MINIMIZE_WINDOW" 35 <span i18n-title="MINIMIZE_WINDOW"
15 class="window-control window-minimize"> 36 class="window-control window-minimize">
16 <img src="icon_minimize.webp"> 37 <img src="icon_minimize.webp">
17 </span> 38 </span>
18 <span i18n-title="MAXIMIZE_WINDOW" 39 <span i18n-title="MAXIMIZE_WINDOW"
19 class="window-control window-maximize-restore"> 40 class="window-control window-maximize-restore">
20 <img src="icon_maximize_restore.webp"> 41 <img src="icon_maximize_restore.webp">
21 </span> 42 </span>
22 <span i18n-title="CLOSE_WINDOW" 43 <span i18n-title="CLOSE_WINDOW"
23 class="window-control window-close"> 44 class="window-control window-close">
24 <img src="icon_close.webp"> 45 <img src="icon_close.webp">
25 </span> 46 </span>
26 </div> 47 </div>
27 <div class="window-controls-stub">&nbsp;</div> 48 <div class="window-controls-stub">&nbsp;</div>
28 </span> 49 </span>
29 </div> 50 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698