165 lines
2.9 KiB
SCSS
165 lines
2.9 KiB
SCSS
// studio - utilities - reset
|
|
// ====================
|
|
|
|
// not ready for this yet, but this should be done as things get cleaner
|
|
// * {
|
|
// @include box-sizing(border-box);
|
|
// }
|
|
|
|
// better text rendering/kerning through SVG
|
|
* {
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
html, body, div, span, applet, object, iframe,
|
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
|
a, abbr, acronym, address, big, cite, code,
|
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
|
small, strike, strong, sub, sup, tt, var,
|
|
b, u, i, center,
|
|
dl, dt, dd, ol, ul, li,
|
|
fieldset, form, label, legend,
|
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
|
article, aside, canvas, details, figcaption, figure,
|
|
footer, header, hgroup, menu, nav, section, summary,
|
|
time, mark, audio, video {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
outline: 0;
|
|
font-size: 100%;
|
|
font: inherit;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
html,body {
|
|
height: 100%;
|
|
}
|
|
|
|
article, aside, details, figcaption, figure,
|
|
footer, header, hgroup, menu, nav, section {
|
|
display: block;
|
|
}
|
|
body {
|
|
line-height: 1;
|
|
}
|
|
ol, ul {
|
|
list-style: none;
|
|
}
|
|
blockquote, q {
|
|
quotes: none;
|
|
}
|
|
blockquote:before, blockquote:after,
|
|
q:before, q:after {
|
|
content: '';
|
|
content: none;
|
|
}
|
|
|
|
ins {
|
|
text-decoration: none;
|
|
}
|
|
del {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
abbr[title] {
|
|
border-bottom: none;
|
|
text-decoration: none;
|
|
cursor: help;
|
|
}
|
|
|
|
// ====================
|
|
|
|
// grandfathered styles
|
|
|
|
// reset styles to remove ui-lightness jquery ui theme from the tabs component (used in the add component problem tab menu)
|
|
.ui-tabs {
|
|
padding: 0;
|
|
white-space: normal;
|
|
}
|
|
|
|
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, ui-corner-top, .ui-corner-br, .ui-corner-right {
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
border-top-left-radius: 0;
|
|
}
|
|
|
|
|
|
.ui-widget-content {
|
|
border: 0;
|
|
background: none;
|
|
}
|
|
.ui-widget {
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.ui-widget-header {
|
|
border:none;
|
|
background: none;
|
|
}
|
|
|
|
.ui-tabs .ui-tabs-nav {
|
|
padding: 0;
|
|
}
|
|
|
|
.ui-tabs .ui-tabs-nav li {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
top: 0;
|
|
margin: 0;
|
|
float: none;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
.ui-tabs-nav {
|
|
|
|
li {
|
|
top: 0;
|
|
margin: 0;
|
|
}
|
|
a {
|
|
float: none;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
|
|
.ui-tabs .ui-tabs-panel {
|
|
padding: 0;
|
|
}
|
|
|
|
// reapplying the tab styles from unit.scss after removing jquery ui ui-lightness styling
|
|
.problem-type-tabs {
|
|
border:none;
|
|
list-style-type: none;
|
|
width: 100%;
|
|
@include linear-gradient(top, rgba(255, 255, 255, .4), rgba(255, 255, 255, 0));
|
|
//background-color: $lightBluishGrey;
|
|
@include box-shadow(0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 -1px 0 rgba(0, 0, 0, 0.2) inset);
|
|
|
|
li:first-child {
|
|
margin-left: 20px;
|
|
}
|
|
li {
|
|
opacity: 0.8;
|
|
|
|
&:ui-state-active {
|
|
background-color: rgba(255, 255, 255, .3);
|
|
opacity: 1.0;
|
|
font-weight: 400;
|
|
}
|
|
a:focus {
|
|
outline: none;
|
|
border: 0px;
|
|
}
|
|
}
|
|
}
|