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

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

Issue 498813003: Separate menu & disconnect buttons from the window controls and clean up CSS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « remoting/webapp/html/template_main.html ('k') | remoting/webapp/window_frame.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <div class="window-controls-and-title">
8 <span class="window-controls-hover-target"> 8 <span i18n-title="OPTIONS_MENU"
9 <div class="window-controls"> 9 class="window-control window-options menu-button">
10 <span i18n-title="OPTIONS_MENU" 10 <span class="menu-button-activator">
11 class="window-control window-options menu-button"> 11 <img src="icon_options.webp">
12 <span class="menu-button-activator">
13 <img src="icon_options.webp">
14 </span>
15 <ul class="window-options-menu right-align">
16 <li class="menu-start-stop-recording"
17 i18n-content="START_RECORDING"
18 hidden></li>
19 <li class="menu-send-ctrl-alt-del"
20 i18n-content="SEND_CTRL_ALT_DEL"></li>
21 <li class="menu-send-print-screen"
22 i18n-content="SEND_PRINT_SCREEN"></li>
23 <li class="menu-separator"></li>
24 <li class="menu-resize-to-client"
25 i18n-content="RESIZE_TO_CLIENT"></li>
26 <li class="menu-shrink-to-fit"
27 i18n-content="SHRINK_TO_FIT"></li>
28 <li class="menu-separator"></li>
29 <li class="menu-new-connection"
30 i18n-content="NEW_CONNECTION"></li>
31 <li class="menu-separator"></li>
32 <li class="menu-help"
33 i18n-content="HELP"></li>
34 <li class="menu-feedback"
35 i18n-content="ACTIONBAR_FEEDBACK"></li>
36 </ul>
37 </span> 12 </span>
38 <span i18n-title="DISCONNECT_MYSELF_BUTTON" 13 <ul class="window-options-menu right-align">
39 class="window-control window-disconnect"> 14 <li class="menu-start-stop-recording"
40 <img src="icon_disconnect.webp"> 15 i18n-content="START_RECORDING"
41 </span> 16 hidden></li>
42 <span i18n-title="MINIMIZE_WINDOW" 17 <li class="menu-send-ctrl-alt-del"
43 class="window-control window-minimize"> 18 i18n-content="SEND_CTRL_ALT_DEL"></li>
44 <img src="icon_minimize.webp"> 19 <li class="menu-send-print-screen"
45 </span> 20 i18n-content="SEND_PRINT_SCREEN"></li>
46 <span i18n-title="MAXIMIZE_WINDOW" 21 <li class="menu-separator"></li>
47 class="window-control window-maximize-restore"> 22 <li class="menu-resize-to-client"
48 <img src="icon_maximize_restore.webp"> 23 i18n-content="RESIZE_TO_CLIENT"></li>
49 </span> 24 <li class="menu-shrink-to-fit"
50 <span i18n-title="CLOSE_WINDOW" 25 i18n-content="SHRINK_TO_FIT"></li>
51 class="window-control window-close"> 26 <li class="menu-separator"></li>
52 <img src="icon_close.webp"> 27 <li class="menu-new-connection"
53 </span> 28 i18n-content="NEW_CONNECTION"></li>
54 </div> 29 <li class="menu-separator"></li>
55 <div class="window-controls-stub">&nbsp;</div> 30 <li class="menu-help"
56 </span> 31 i18n-content="HELP"></li>
57 </div> 32 <li class="menu-feedback"
33 i18n-content="ACTIONBAR_FEEDBACK"></li>
34 </ul>
35 </span>
36 <span i18n-title="DISCONNECT_MYSELF_BUTTON"
37 class="window-control window-disconnect">
38 <img src="icon_disconnect.webp">
39 </span>
40 <span class="window-title">&nbsp;</span>
41 <span i18n-title="MINIMIZE_WINDOW"
42 class="window-control window-minimize">
43 <img src="icon_minimize.webp">
44 </span>
45 <span i18n-title="MAXIMIZE_WINDOW"
46 class="window-control window-maximize-restore">
47 <img src="icon_maximize_restore.webp">
48 </span>
49 <span i18n-title="CLOSE_WINDOW"
50 class="window-control window-close">
51 <img src="icon_close.webp">
52 </span>
53 </div>
54 <div class="window-controls-stub">&nbsp;</div>
55 </div> <!-- title-bar -->
OLDNEW
« no previous file with comments | « remoting/webapp/html/template_main.html ('k') | remoting/webapp/window_frame.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698