remove React code, node-sass, and sass-loader dependencies

This commit is contained in:
alecmerdler 2017-06-07 12:54:43 -07:00
parent f0dd2e348b
commit 9dfab42c0a
17 changed files with 2 additions and 594 deletions

View file

@ -1,10 +0,0 @@
/*
A list of useful mixins
*/
@mixin box-shadow($args...) {
-webkit-box-shadow: $args;
-moz-box-shadow: $args;
box-shadow: $args;
-o-box-shadow: $args;
}

View file

@ -1,50 +0,0 @@
.rp-description {
font-size: 16px;
}
.rp-throbber {
position: relative;
}
.rp-panelBody {
padding: 15px 30px;
}
.rp-tabs {
border-bottom: 1px solid #DDD;
}
.rp-tabs > li.active > a,
.rp-tabs > li.active > a:focus,
.rp-tabs > li.active > a:hover {
border-width: 0;
}
.rp-tabs {
padding: 0 15px;
font-size: 20px;
li.active a {
color: #51a3d9;
border-bottom: 1px solid #51a3d9;
&:hover {
color: #51a3d9;
border-bottom: 1px solid #51a3d9;
}
}
li a {
color: #333;
border-bottom: 1px solid #DDD;
&:focus,
&:hover {
border: 1px solid #fff;
border-bottom: 1px solid #ddd;
background-color: #fff;
}
}
}
.rp-tagSpan {
margin: 0 2px;
}

View file

@ -1,30 +0,0 @@
.rp-button {
float: right;
margin-right: 30px;
}
.rp-button__dropdown {
background-color: #fff;
border-radius: 4px;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25), 0 0 1px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}
.rp-button__text {
margin-right: 10px;
}
.rp-button__text--bold {
font-weight: 600;
}
.rp-header__row {
margin: 0;
}
.rp-title {
font-size: 24px;
color: #333;
float: left;
}

View file

@ -1,33 +0,0 @@
// Repo Page specific styles here
@import "../mixins";
@import "body";
@import "header";
@import "sidebar";
.rp-header {
padding: 30px;
}
.rp-mainPanel {
margin-bottom: 20px;
background-color: #fff;
@include box-shadow(0px 2px 2px rgba(0, 0, 0, 0.4));
overflow: hidden;
display: table;
[class*="col-"] {
float: none;
display: table-cell;
vertical-align: top;
}
}
.rp-main {
padding: 0;
border-right: 1px solid #ddd;
}
.rp-sidebar {
padding: 30px 30px 0 30px;
}

View file

@ -1,52 +0,0 @@
.rp-badge {
float: left;
width: 100%;
margin-bottom: 20px;
}
.rp-badge__icon {
float: left;
height: 25px;
font-size: 16px;
padding: 0 12px;
color: #ffffff;
}
.rp-badge__icon--private {
@extend .rp-badge__icon;
background-color: #d64456;
}
.rp-badge__icon--public {
@extend .rp-badge__icon;
background-color: #2fc98e;
}
.rp-imagesHeader {
font-size: 18px;
margin-bottom: 30px;
}
.rp-imagesTable {
margin-bottom: 30px;
}
.rp-imagesTable__headerCell {
font-size: 13px;
font-weight: 300;
font-style: normal;
color: #999;
padding: 10px;
border-bottom: 1px solid #ddd;
}
.rp-imagesTable__tagIcon {
padding-right: 4px;
}
.rp-sharing {
font-size: 16px;
color: #333;
margin-bottom: 30px;
}