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

Unified Diff: chrome/browser/resources/options2/cookies_view.css

Issue 10636019: Adding Application Data dialog for isolated apps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Properly done JavaScript and CSS. Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options2/cookies_view.css
diff --git a/chrome/browser/resources/options2/cookies_view.css b/chrome/browser/resources/options2/cookies_view.css
index e864ff4373731d5450adcbcab2bbaf3b60102999..e7c4436a3dd68b559d995e8dc63487170ff40bc4 100644
--- a/chrome/browser/resources/options2/cookies_view.css
+++ b/chrome/browser/resources/options2/cookies_view.css
@@ -3,27 +3,30 @@
* found in the LICENSE file. */
/* Styles for the cookies list page. */
-#cookies-view-page {
+.cookies-view-page {
height: 90%;
margin-left: -15px;
width: 720px;
}
/* Styles for the cookies list elements in cookies_view.html. */
-#cookies-list {
+.cookies-list {
-webkit-box-flex: 1;
/* This property overrides the |min-height: 192px;| property above due to
* special behavior of the cookies list. */
+ border: 1px solid #D9D9D9;
+ margin: 0;
+ margin-top: 5px;
min-height: 0;
}
-#cookies-list-content-area {
+.cookies-list-content-area {
-webkit-box-orient: vertical;
display: -webkit-box;
overflow-y: hidden;
}
-#cookies-column-headers {
+.cookies-column-headers {
-webkit-box-align: baseline;
-webkit-box-orient: horizontal;
display: -webkit-box;
@@ -31,36 +34,27 @@
width: 100%;
}
-#cookies-column-headers > * {
+.cookies-column-headers > * {
display: block;
}
-#cookies-column-headers h3 {
+.cookies-column-headers h3 {
font-size: 105%;
font-weight: bold;
margin: 10px 0;
}
/* Notice the width and padding for these columns match up with those below. */
-#cookies-site-column {
+.cookies-site-column {
-webkit-padding-start: 7px;
width: 14em;
}
-#cookies-data-column {
+.cookies-data-column {
-webkit-box-flex: 1;
-webkit-padding-start: 7px;
}
-#cookies-header-controls > * {
- margin-bottom: 5px;
-}
-
-#cookies-list {
- border: 1px solid #D9D9D9;
- margin: 0;
-}
-
/* Enable animating the height of items. */
list.cookie-list .deletable-item {
-webkit-transition: height 150ms ease-in-out;
@@ -196,3 +190,17 @@ list.cookie-list > .deletable-item[selected] .cookie-details {
.cookie-details-value {
word-wrap: break-word;
}
+
+
+/* Styles specific to the app cookies window */
+#app-cookies-site-column {
+ width: 20em;
+}
+
+.app-cookie-site {
+ width: 20em;
+}
+
+.app-cookie-items {
+ -webkit-margin-start: 20em;
+}

Powered by Google App Engine
This is Rietveld 408576698