summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/inspector/front-end/inspector.css
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/inspector/front-end/inspector.css')
-rw-r--r--Source/WebCore/inspector/front-end/inspector.css37
1 files changed, 22 insertions, 15 deletions
diff --git a/Source/WebCore/inspector/front-end/inspector.css b/Source/WebCore/inspector/front-end/inspector.css
index f629d12..c992806 100644
--- a/Source/WebCore/inspector/front-end/inspector.css
+++ b/Source/WebCore/inspector/front-end/inspector.css
@@ -428,10 +428,6 @@ body.port-qt #dock-status-bar-item {
-webkit-mask-image: url(Images/clearConsoleButtonGlyph.png);
}
-#changes-status-bar-item .glyph {
- -webkit-mask-image: url(Images/consoleButtonGlyph.png); /* TODO: Needs Image for Changes Toggle Button */
-}
-
#counters {
position: absolute;
right: 16px;
@@ -442,22 +438,14 @@ body.port-qt #dock-status-bar-item {
height: 19px;
}
-#changes-count, #error-warning-count {
+#error-warning-count {
display: inline;
}
-#error-warning-count:hover, #changes-count:hover {
+#error-warning-count:hover {
border-bottom: 1px solid rgb(96, 96, 96);
}
-#style-changes-count::before {
- content: url(Images/styleIcon.png); /* TODO: Needs Image for Style Changes Icon */
- width: 10px;
- height: 10px;
- vertical-align: -1px;
- margin-right: 2px;
-}
-
#error-count::before {
content: url(Images/errorIcon.png);
width: 10px;
@@ -466,7 +454,7 @@ body.port-qt #dock-status-bar-item {
margin-right: 2px;
}
-#changes-count + #error-warning-count, #error-count + #warning-count {
+#error-count + #warning-count {
margin-left: 6px;
}
@@ -685,6 +673,7 @@ body.platform-linux .monospace, body.platform-linux .source-code {
.console-message-url {
float: right;
+ margin-left: 4px;
}
.console-group-messages .section {
@@ -2096,6 +2085,10 @@ li.selected .base-storage-tree-element-subtitle {
content: url(Images/treeDownTriangleBlack.png);
}
+.data-grid button {
+ line-height: 19px;
+}
+
body.inactive .data-grid th.sort-ascending, body.inactive .data-grid th.sort-descending {
background-image: url(Images/glossyHeader.png);
border-right: 1px solid rgb(179, 179, 179);
@@ -4320,3 +4313,17 @@ a.worker-item:hover {
.cursor-auto {
cursor: auto;
}
+
+.please-wait-msg {
+ position: absolute;
+ left: 0;
+ top: 0;
+ border: 4px black solid;
+ border-radius: 4px;
+ background-color: black;
+ opacity: 0.85;
+ color: white;
+ font-size: 12px;
+ font-weight: bold;
+ z-index: 10000;
+}