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

Side by Side Diff: chrome/browser/resources/ntp/apps.css

Issue 3522015: Implement new strategy for default apps (Closed)
Patch Set: all done Created 10 years, 2 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 | « chrome/browser/resources/new_new_tab.js ('k') | chrome/browser/resources/ntp/apps.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Apps */ 1 /* Apps */
2 2
3 .app, 3 .app,
4 .app[new=installed] { 4 .app[new=installed] {
5 -webkit-box-sizing: border-box; 5 -webkit-box-sizing: border-box;
6 -webkit-perspective: 400; 6 -webkit-perspective: 400;
7 border-radius: 10px; 7 border-radius: 10px;
8 color: black; 8 color: black;
9 display: inline-block; 9 display: inline-block;
10 margin: 5px 3px; 10 margin: 5px 3px;
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 } 95 }
96 96
97 menu > button.default { 97 menu > button.default {
98 font-weight: bold; 98 font-weight: bold;
99 } 99 }
100 100
101 #apps-promo { 101 #apps-promo {
102 display: none; 102 display: none;
103 } 103 }
104 104
105 html[appspromovisible=true] #apps-promo { 105 html.apps-promo-visible #apps-promo {
106 display: block; 106 display: block;
107 } 107 }
108 108
109 #apps-promo > h3 { 109 #apps-promo > h3 {
110 font-size: 16px; 110 font-size: 16px;
111 margin-top: 1em; 111 margin-top: 1em;
112 margin-bottom: 0.25em; 112 margin-bottom: 0.25em;
113 } 113 }
114 114
115 #apps-promo-text1 { 115 #apps-promo-text1 {
116 margin-top: 0; 116 margin-top: 0;
117 } 117 }
118 118
119 #apps-promo-hide { 119 #apps-promo-hide {
120 float: right; 120 float: right;
121 -webkit-appearance: none; 121 -webkit-appearance: none;
122 -webkit-transition: opacity .15s; 122 -webkit-transition: opacity .15s;
123 background-color: transparent; 123 background-color: transparent;
124 border: 0; 124 border: 0;
125 cursor: pointer; 125 cursor: pointer;
126 font-family: inherit; 126 font-family: inherit;
127 font-size: 90%; 127 font-size: 90%;
128 text-decoration: underline; 128 text-decoration: underline;
129 } 129 }
130 130
131 html[dir=rtl] #apps-promo-hide { 131 html[dir=rtl] #apps-promo-hide {
132 float: left; 132 float: left;
133 } 133 }
134 134
135 html[appspromovisible=true] .app[app-id=web-store-entry] { 135 html.apps-promo-visible .app[app-id=web-store-entry] {
136 left: 25px; 136 left: 25px;
137 } 137 }
138 138
139 html[appspromovisible=true][dir=rtl] .app[app-id=web-store-entry] { 139 html.apps-promo-visible[dir=rtl] .app[app-id=web-store-entry] {
140 right: 25px; 140 right: 25px;
141 } 141 }
142 142
143 html[appspromovisible=true] .app[app-id=web-store-entry] a { 143 html.apps-promo-visible .app[app-id=web-store-entry] a {
144 font-weight: bold; 144 font-weight: bold;
145 } 145 }
146 146
OLDNEW
« no previous file with comments | « chrome/browser/resources/new_new_tab.js ('k') | chrome/browser/resources/ntp/apps.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698