2018-10-21 15:44:14 +00:00
|
|
|
/* STATUSPANEL INSIDE URLBAR */
|
|
|
|
|
|
|
|
#urlbar .urlbar-input-box{ display: -moz-stack }
|
2018-12-04 18:22:45 +00:00
|
|
|
/* -moz-stack causes an subtle issue where in certain scenarios a weirdly aligned "http(s)://" may show up */
|
2018-10-21 15:44:14 +00:00
|
|
|
#urlbar .urlbar-input-box::after{
|
|
|
|
z-index: 2;
|
|
|
|
content: "";
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
pointer-events:none;
|
2018-12-04 15:32:10 +00:00
|
|
|
background: -moz-element(#statuspanel) left calc(90% - var(--toolbarbutton-outer-padding)) no-repeat !important;
|
2018-10-21 15:44:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#urlbar .urlbar-input-box::after{
|
|
|
|
display: -moz-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
#statuspanel{ z-index: -1; }
|
|
|
|
|
|
|
|
#statuspanel-inner > #statuspanel-label{
|
|
|
|
height:23px;
|
|
|
|
min-width: 500px;
|
|
|
|
background-color: var(--lwt-toolbar-field-background-color, hsla(0,0%,100%,.8)) !important;
|
|
|
|
border: none !important;
|
|
|
|
color: var(--lwt-toolbar-field-color, black) !important;
|
2018-12-04 15:32:10 +00:00
|
|
|
font-size: larger;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't show common values to save space (useful for oneliner) - safe to delete these */
|
|
|
|
/* If you change the font size of the label then you'll have to modify these too */
|
|
|
|
/* non-https links get a slight red hue */
|
|
|
|
|
|
|
|
#statuspanel-inner > #statuspanel-label{ margin-left: -3px !important; color: lightpink !important;}
|
|
|
|
#statuspanel-inner > #statuspanel-label[value^="http"]{ margin-left: -3.7ch !important; }
|
|
|
|
#statuspanel-inner > #statuspanel-label[value^="https"]{ margin-left: -6.1ch !important; color: var(--lwt-toolbar-field-color, black) !important}
|
|
|
|
#statuspanel-inner > #statuspanel-label[value^="www"]{ margin-left: -4.5ch !important; }
|
|
|
|
#statuspanel-inner > #statuspanel-label[value^="http://www"]{ margin-left: -9.7ch !important; }
|
|
|
|
#statuspanel-inner > #statuspanel-label[value^="https://www"]{ margin-left: -10.1ch !important; }
|
|
|
|
#statuspanel-inner{ margin-left: -1px; }
|