sass-site/source/assets/css/components/_sass-syntax-switcher.scss

144 lines
3.0 KiB
SCSS
Raw Normal View History

.ui-helper-reset { line-height: inherit; }
.ui-tabs {
2019-03-04 23:41:21 +01:00
&,
.ui-tabs-nav,
.ui-tabs-nav li.ui-tabs-active,
.ui-tabs-panel { padding: 0; }
.ui-tabs-nav {
2018-12-28 01:31:28 +01:00
position: relative;
2019-03-05 03:29:20 +01:00
top: 1.35rem;
2019-03-05 02:51:45 +01:00
margin-left: -1em;
2018-12-28 23:55:48 +01:00
2018-12-29 02:59:53 +01:00
a { border: 0; background: none; }
2018-12-29 02:03:29 +01:00
a:focus {
outline: 0px !important;
border:none !important;
box-shadow:none !important;
}
2018-12-28 23:55:48 +01:00
.ui-tabs-active {
2018-12-28 23:55:48 +01:00
&:after,
&:before {
bottom: -3px;
left: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
&:after {
border-color: transparent;
border-bottom-color: #f8f8f8;
border-width: 10px;
margin-left: -10px;
}
&:before {
border-color: transparent;
border-bottom-color: #ebebeb;
border-width: 11px;
margin-left: -11px;
}
}
2018-12-28 23:55:48 +01:00
li {
2019-03-05 02:51:45 +01:00
float: left;
&,
&.ui-tabs-active { margin: 0; }
2018-08-30 02:54:04 +02:00
&.css-tab {
2018-12-28 23:55:48 +01:00
&,
2018-12-28 01:31:28 +01:00
&.ui-tabs-active { margin-left: 2em; }
2018-08-30 02:54:04 +02:00
a::before {
2018-12-28 01:31:28 +01:00
color: $sl-color--regent-grey;
content: "\21d2";
font-size: $sl-font-size--large;
font-weight: $sl-font-weight--bold;
left: -1.2em;
position: absolute;
2019-03-05 02:51:45 +01:00
top: 0.75rem;
2018-08-30 02:54:04 +02:00
}
}
}
2018-12-28 01:31:28 +01:00
.ui-tabs-active a { color: $sl-color--regent-grey; }
2018-12-28 01:31:28 +01:00
.ui-tabs-anchor { padding: .75rem 1rem; }
}
// Carefully calibrated so that the distance between two code blocks in the
// syntax switcher is exactly equal to two lines, so there's no visual jitter
// when switching between syntaxes.
pre { margin-top: 22px; }
2018-12-28 01:31:28 +01:00
}
.ui-widget.ui-widget-content,
.ui-widget-header,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active { border: 0; }
.ui-widget-header { font-weight: inherit; }
.ui-widget { font: inherit; }
.ui-widget-content,
.ui-widget-header,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active { background: none; }
.ui-widget-content,
.ui-widget-header { color: inherit; }
.sl-c-callout {
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active,
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button { color: inherit; }
.ui-widget a { border: 0; }
.ui-tabs .ui-tabs-nav li.css-tab a::before {
color: rgba(white, .5);
}
}
2018-12-28 04:47:31 +01:00
2019-03-04 23:41:21 +01:00
.ui-tabs-panel > h3 {
2019-03-05 02:19:06 +01:00
position: relative;
top: .45rem;
2019-03-04 23:41:21 +01:00
margin: 0;
text-transform: uppercase;
color: $sl-color--hopbush;
&,
* { font-size: 1rem; }
}