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

Side by Side Diff: gm/rebaseline_server/static/view.css

Issue 446933002: make the action buttons for rebaseline server stick to the top of the window as you scroll (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Address Elliot's comments 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
« no previous file with comments | « gm/rebaseline_server/static/utils.js ('k') | gm/rebaseline_server/static/view.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Special alert areas at the top of the page. */ 1 /* Special alert areas at the top of the page. */
2 .todo-div { 2 .todo-div {
3 background-color: #bbffbb; 3 background-color: #bbffbb;
4 } 4 }
5 .warning-div { 5 .warning-div {
6 background-color: #ffbb00; 6 background-color: #ffbb00;
7 } 7 }
8 8
9 .tab-wrapper { 9 .tab-wrapper {
10 margin-top: 10px; 10 margin-top: 10px;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 .show-only-button { 61 .show-only-button {
62 font-size: 8px; 62 font-size: 8px;
63 } 63 }
64 .show-all-button { 64 .show-all-button {
65 font-size: 8px; 65 font-size: 8px;
66 } 66 }
67 67
68 .image-link { 68 .image-link {
69 text-decoration: none; 69 text-decoration: none;
70 } 70 }
71
72 .results-header {
73 overflow: hidden;
74 padding: 10px;
75 background-color: #ccccff;
76 }
77
78 .results-header-actions {
79 float: right;
80 }
81
82 .sticky {
83 position: fixed;
84 top: 2px;
85 box-shadow: -2px 2px 5px 0 rgba(0,0,0,.45);
86 background: white;
87 right: 2px;
88 padding: 10px;
89 border: 2px solid #222;
90 }
OLDNEW
« no previous file with comments | « gm/rebaseline_server/static/utils.js ('k') | gm/rebaseline_server/static/view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698