Files
edx-platform/lms/static/sass/lms-course.scss
Matjaz Gregoric 5487ff5906 Fix RTL issue with capa problems (#28562)
* fix: resolve styling cap RTL styling issue

Margins were incorrect in the RTL version of the stylesheet.

* fix: move style overrides from lms-course to capa

These styles were only applied to the LTR version of the stylesheet, but
we want them in the RTL version as well.
2021-09-21 10:44:35 -04:00

27 lines
680 B
SCSS

@import 'bourbon/bourbon';
@import 'vendor/bi-app/bi-app-ltr'; // set the layout for left to right languages
@import 'build-course'; // shared app style assets/rendering
.dates-banner {
.upgrade-button {
button {
display: block;
border-radius: 2px;
border: solid 1px #0175b4;
background: white;
color: #2d323e;
font-size: 14px;
font-weight: bold;
line-height: 24px;
padding: 7px 18px;
&:hover,
&:focus,
&:active {
cursor: pointer;
box-shadow: 0 2px 1px $shadow;
}
}
}
}