Commit fd1f817a authored by kgr@chromium.org's avatar kgr@chromium.org

Fixed layout bug in cookies view and adjusted dialog and site column sizes.

BUG=95381, 110380
TEST=see first ticket


Review URL: http://codereview.chromium.org/10108018

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132604 0039d316-1c4b-4281-b951-d872f2087c98
parent 52ea3eb2
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#cookies-view-page { #cookies-view-page {
height: 90%; height: 90%;
margin-left: -15px; margin-left: -15px;
min-width: 700px; min-width: 720px;
} }
/* Styles for the cookies list elements in cookies_view.html. */ /* Styles for the cookies list elements in cookies_view.html. */
...@@ -49,7 +49,7 @@ html[dir=rtl] #remove-all-cookies-search-column { ...@@ -49,7 +49,7 @@ html[dir=rtl] #remove-all-cookies-search-column {
#cookies-site-column { #cookies-site-column {
display: inline-block; display: inline-block;
font-weight: bold; font-weight: bold;
width: 11em; width: 14em;
} }
#cookies-data-column { #cookies-data-column {
...@@ -93,7 +93,7 @@ html[dir=rtl] list.cookie-list > .deletable-item > .close-button { ...@@ -93,7 +93,7 @@ html[dir=rtl] list.cookie-list > .deletable-item > .close-button {
display: inline-block; display: inline-block;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
width: 11em; width: 14em;
} }
list.cookie-list > .deletable-item[selected] .cookie-site { list.cookie-list > .deletable-item[selected] .cookie-site {
...@@ -102,12 +102,15 @@ list.cookie-list > .deletable-item[selected] .cookie-site { ...@@ -102,12 +102,15 @@ list.cookie-list > .deletable-item[selected] .cookie-site {
.cookie-data { .cookie-data {
display: inline-block; display: inline-block;
max-width: 410px;
overflow: hidden;
text-overflow: ellipsis;
} }
.cookie-size { .cookie-size {
display: inline-block; display: inline-block;
float: right; float: right;
margin-right: 3em; margin-right: 0;
} }
list.cookie-list > .deletable-item[selected] .cookie-data { list.cookie-list > .deletable-item[selected] .cookie-data {
...@@ -118,7 +121,7 @@ list.cookie-list > .deletable-item[selected] .cookie-data { ...@@ -118,7 +121,7 @@ list.cookie-list > .deletable-item[selected] .cookie-data {
/* Styles for the individual items (cookies, etc.). */ /* Styles for the individual items (cookies, etc.). */
.cookie-items { .cookie-items {
/* Notice that the margin and padding match up with those above. */ /* Notice that the margin and padding match up with those above. */
-webkit-margin-start: 11em; -webkit-margin-start: 14em;
-webkit-padding-start: 7px; -webkit-padding-start: 7px;
-webkit-transition: 150ms ease-in-out; -webkit-transition: 150ms ease-in-out;
height: 0; height: 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment