OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 1998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2009 margin: 0; | 2009 margin: 0; |
2010 padding: 0 20px; | 2010 padding: 0 20px; |
2011 height: 20px; | 2011 height: 20px; |
2012 } | 2012 } |
2013 | 2013 |
2014 .panel-enabler-view button:active:not(.status-bar-item), .pane-title-button:acti
ve, button.show-all-nodes:active { | 2014 .panel-enabler-view button:active:not(.status-bar-item), .pane-title-button:acti
ve, button.show-all-nodes:active { |
2015 background-color: rgb(215, 215, 215); | 2015 background-color: rgb(215, 215, 215); |
2016 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
94, 194, 194)), to(rgb(239, 239, 239))); | 2016 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
94, 194, 194)), to(rgb(239, 239, 239))); |
2017 } | 2017 } |
2018 | 2018 |
2019 body.inactive .panel-enabler-view button:not(.status-bar-item), .panel-enabler-v
iew button:disabled:not(.status-bar-item), body.inactive .pane-title-button, .pa
ne-title-button:disabled, body.inactive button.show-all-nodes { | 2019 body.inactive .panel-enabler-view button:not(.status-bar-item), .panel-enabler-v
iew button:disabled:not(.status-bar-item), body.inactive button.show-all-nodes { |
2020 color: rgb(130, 130, 130); | 2020 color: rgb(130, 130, 130); |
2021 border-color: rgb(212, 212, 212); | 2021 border-color: rgb(212, 212, 212); |
2022 background-color: rgb(239, 239, 239); | 2022 background-color: rgb(239, 239, 239); |
2023 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
50, 250, 250)), to(rgb(235, 235, 235))); | 2023 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
50, 250, 250)), to(rgb(235, 235, 235))); |
2024 } | 2024 } |
2025 | 2025 |
2026 button.enable-toggle-status-bar-item .glyph { | 2026 button.enable-toggle-status-bar-item .glyph { |
2027 -webkit-mask-position: -192px 0; | 2027 -webkit-mask-position: -192px 0; |
2028 } | 2028 } |
2029 | 2029 |
(...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3075 } | 3075 } |
3076 | 3076 |
3077 .source-frame-cursor-position { | 3077 .source-frame-cursor-position { |
3078 padding-left: 6px; | 3078 padding-left: 6px; |
3079 padding-top: 5px; | 3079 padding-top: 5px; |
3080 display: inline-block; | 3080 display: inline-block; |
3081 pointer-events: auto; | 3081 pointer-events: auto; |
3082 -webkit-user-select: text; | 3082 -webkit-user-select: text; |
3083 font-size: 11px; | 3083 font-size: 11px; |
3084 } | 3084 } |
OLD | NEW |