codeRIT/hackathon_manager

View on GitHub
app/assets/stylesheets/manage/dashboard.css

Summary

Maintainability
Test Coverage
 
/*
* Sidebar
*/
 
Rule doesn't have all its properties in alphabetical order.
.sidebar {
position: fixed;
top: 0;
bottom: 0;
left: 0;
z-index: 5; /* Behind the navbar */
padding: 2.25rem 0 0; /* Height of navbar */
box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
}
 
Rule doesn't have all its properties in alphabetical order.
.sidebar-sticky {
position: relative;
top: 0;
height: calc(100vh - 2.25rem);
padding-top: 0.5rem;
overflow-x: hidden;
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}
 
Duplicate property 'position' found.
Expected (static | relative | absolute | fixed) but found '-webkit-sticky'.
Expected (static | relative | absolute | fixed) but found 'sticky'.
@supports ((position: -webkit-sticky) or (position: sticky)) {
.sidebar-sticky {
Expected (static | relative | absolute | fixed) but found '-webkit-sticky'.
position: -webkit-sticky;
Expected (static | relative | absolute | fixed) but found 'sticky'.
position: sticky;
}
}
 
Rule doesn't have all its properties in alphabetical order.
.sidebar .nav-link {
font-weight: 500;
color: #333;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
 
Rule doesn't have all its properties in alphabetical order.
.sidebar .nav-link .fa {
margin-right: 4px;
color: #999;
}
 
Adjoining classes: .sidebar .nav-link.active
.sidebar .nav-link.active {
color: #007bff;
}
 
.sidebar .nav-link:hover .fa,
Adjoining classes: .sidebar .nav-link.active .fa
.sidebar .nav-link.active .fa {
color: inherit;
}
 
.sidebar-heading {
font-size: 0.75rem;
text-transform: uppercase;
}
 
Rule doesn't have all its properties in alphabetical order.
.nav-item-description {
font-size: 10px;
margin-top: 1px;
margin-left: 26px;
color: #999;
line-height: 1.2;
white-space: normal;
}
 
/*
* Content
*/
 
Unqualified attribute selectors are known to be slow.
[role='main'] {
padding-top: 48px; /* Space for fixed navbar */
}
 
/*
* Navbar
*/
 
Rule doesn't have all its properties in alphabetical order.
.navbar-brand {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
text-overflow: ellipsis;
overflow: hidden;
font-size: 1rem;
Fallback background-color (hex or RGB) should precede RGBA background-color.
background-color: rgba(0, 0, 0, 0.25);
box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25);
}
 
Rule doesn't have all its properties in alphabetical order.
.navbar .form-control {
padding: 0.75rem 1rem;
border-width: 0;
border-radius: 0;
}
 
Rule doesn't have all its properties in alphabetical order.
.form-control-dark {
color: #fff;
Fallback background-color (hex or RGB) should precede RGBA background-color.
background-color: rgba(255, 255, 255, 0.1);
Fallback border-color (hex or RGB) should precede RGBA border-color.
border-color: rgba(255, 255, 255, 0.1);
}
 
.form-control-dark:focus {
border-color: transparent;
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
 
/*
* Utilities
*/
 
.border-top {
border-top: 1px solid #e5e5e5;
}
.border-bottom {
border-bottom: 1px solid #e5e5e5;
}
 
Rule doesn't have all its properties in alphabetical order.
.img-template {
background-image: linear-gradient(45deg, #eee 25%, transparent 25%),
linear-gradient(-45deg, #eee 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #eee 75%),
linear-gradient(-45deg, transparent 75%, #eee 75%);
background-size: 20px 20px;
Values of 0 shouldn't have units specified.
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}