Files
pathfinder/sass/bootstrap/_wells.scss
Mark Friedrich 57f6d4d29b - full refactoring of the "signature module" #679
- improved "character info" tooltips in e.g. signature Table
- improved performance with the live time counters in e.g. signature table
- fixed a bug where mass delete signatures on a system sometimes failed
- fixed a bug where "signature type" sometimes not get saved correctly
- fixed a bug where "responsive table columns" were not shown on larger screens
2018-08-31 19:11:39 +02:00

35 lines
567 B
SCSS

//
// Wells
// --------------------------------------------------
// Base class
.well {
min-height: 20px;
padding: 10px;
margin-bottom: 20px;
background-color: $well-bg;
border: 1px solid $well-border;
@include border-radius(5px);
color: $gray-darker;
font-family: $font-family-bold;
blockquote {
border-color: #ddd;
border-color: rgba(0,0,0,.15);
}
a {
color: $teal-lightest;
}
}
// Sizes
.well-lg {
padding: 24px;
border-radius: $border-radius-large;
}
.well-sm {
padding: 7px;
border-radius: $border-radius-small;
}