Skip to content

Commit

Permalink
Remove unused reset styles from UI Framework.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal committed Nov 23, 2017
1 parent 9b1e0bd commit b9f5578
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 32 deletions.
13 changes: 0 additions & 13 deletions ui_framework/dist/ui_framework.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,6 @@
* 4. Fix an IE bug which causes the last child to overflow the container.
* 5. Fixing this bug means we now need to align the children to the right.
*/
* {
box-sizing: border-box; }
*:before, *:after {
box-sizing: border-box; }

:focus {
z-index: 1;
/* 1 */
Expand All @@ -67,21 +62,13 @@
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px #0079a5;
/* 3 */ }

body {
font-family: "Open Sans", Helvetica, Arial, sans-serif; }

/**
* 1. Required for IE11.
*/
main {
display: block;
/* 1 */ }

button,
input[type="submit"],
input[type="button"] {
border-radius: 0; }

.kuiScreenReaderOnly {
position: absolute;
left: -10000px;
Expand Down
19 changes: 0 additions & 19 deletions ui_framework/src/global_styling/reset/_reset.scss
Original file line number Diff line number Diff line change
@@ -1,30 +1,11 @@
* {
box-sizing: border-box;

&:before,
&:after {
box-sizing: border-box;
}
}

// Removes outline, but still provides a two color box shadow that works anywhere.
:focus {
@include focus;
}

body {
font-family: $kuiFontFamily;
}

/**
* 1. Required for IE11.
*/
main {
display: block; /* 1 */
}

button,
input[type="submit"],
input[type="button"] {
border-radius: 0;
}

0 comments on commit b9f5578

Please sign in to comment.