Skip to content

Commit

Permalink
2009-10-20 Joseph Pecoraro <joepeck@webkit.org>
Browse files Browse the repository at this point in the history
        Reviewed by Timothy Hatcher.

        Web Inspector: Watched Expressions Buttons Do Not Match Inspector Styles
        https://bugs.webkit.org/show_bug.cgi?id=30554

        * inspector/front-end/inspector.css: added style to pane buttons

Canonical link: https://commits.webkit.org/41312@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@49858 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
JosephPecoraro committed Oct 20, 2009
1 parent d9c8b12 commit f44dc66
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
9 changes: 9 additions & 0 deletions WebCore/ChangeLog
@@ -1,3 +1,12 @@
2009-10-20 Joseph Pecoraro <joepeck@webkit.org>

Reviewed by Timothy Hatcher.

Web Inspector: Watched Expressions Buttons Do Not Match Inspector Styles
https://bugs.webkit.org/show_bug.cgi?id=30554

* inspector/front-end/inspector.css: added style to pane buttons

2009-10-20 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.
Expand Down
22 changes: 15 additions & 7 deletions WebCore/inspector/front-end/inspector.css
Expand Up @@ -2212,12 +2212,8 @@ body.inactive .data-grid th.sort-ascending, body.inactive .data-grid th.sort-des
margin: 0 0 5px 20px;
}

.panel-enabler-view button {
font-size: 13px;
margin: 6px 0 0 0;
padding: 3px 20px;
.panel-enabler-view button, .pane button {
color: rgb(6, 6, 6);
height: 24px;
background-color: transparent;
border: 1px solid rgb(165, 165, 165);
background-color: rgb(237, 237, 237);
Expand All @@ -2226,12 +2222,24 @@ body.inactive .data-grid th.sort-ascending, body.inactive .data-grid th.sort-des
-webkit-appearance: none;
}

.panel-enabler-view button:active {
.panel-enabler-view button {
font-size: 13px;
margin: 6px 0 0 0;
padding: 3px 20px;
height: 24px;
}

.pane button {
margin: 6px 0 6px 3px;
padding: 2px 9px;
}

.panel-enabler-view button:active, .pane button:active {
background-color: rgb(215, 215, 215);
background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(194, 194, 194)), to(rgb(239, 239, 239)));
}

body.inactive .panel-enabler-view button, .panel-enabler-view button:disabled {
body.inactive .panel-enabler-view button, .panel-enabler-view button:disabled, body.inactive .pane button, .pane button:disabled {
color: rgb(130, 130, 130);
border-color: rgb(212, 212, 212);
background-color: rgb(239, 239, 239);
Expand Down

0 comments on commit f44dc66

Please sign in to comment.