mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
36 lines
915 B
CSS
36 lines
915 B
CSS
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
.urlbarView-row[dynamicType=testDynamicType] > .urlbarView-row-inner {
|
|
display: flex;
|
|
align-items: center;
|
|
min-height: 32px;
|
|
width: 100%;
|
|
}
|
|
|
|
.urlbarView-dynamic-testDynamicType-text {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
padding: 10px;
|
|
}
|
|
|
|
.urlbarView-dynamic-testDynamicType-button {
|
|
min-height: 16px;
|
|
padding: 8px;
|
|
border: none;
|
|
border-radius: 2px;
|
|
font-size: 0.93em;
|
|
color: inherit;
|
|
background-color: var(--urlbarView-button-background);
|
|
min-width: 8.75em;
|
|
text-align: center;
|
|
flex-basis: initial;
|
|
flex-shrink: 0;
|
|
margin-inline-end: 10px;
|
|
}
|
|
|
|
.urlbarView-dynamic-testDynamicType-button[selected] {
|
|
color: white;
|
|
background-color: var(--urlbarView-primary-button-background);
|
|
box-shadow: 0 0 0 1px #0a84ff inset, 0 0 0 1px #0a84ff, 0 0 0 4px rgba(10, 132, 255, 0.3);
|
|
}
|