humhub/static/less/mixins.less
aronbos c83ca28a42
Remove old prefixes (#5972)
* Update base.less

* Update button.less

* Update login.less

* Update tooltip.less

* Update richtext.less

* Update progress.less

* Update mentioning.less

* Update loader.less

* Remove old prefixes

* Update datepicker.less

* Update comment.less

* Remove old-prefixes

* Remove old prefixes

* Remove old prefixes

* Remove old prefixes

* Remove old prefixes

* Update modal.less

* Remove old prefixes
2022-12-30 13:02:33 +01:00

141 lines
2.2 KiB
Plaintext

//
// Theme color classes
// (Add this classes to the html elements from your
// modules to adopt the colors from currently
// activated theme)
// --------------------------------------------------
//@import (reference) "../../protected/vendor/bower-asset/fontawesome/less/font-awesome.less";
//@import (reference) "../../protected/vendor/bower-asset/bootstrap/less/mixins.less";
/* Default */
.colorDefault {
color: @default;
}
.backgroundDefault {
background: @default;
}
.borderDefault {
border-color: @default;
}
/* Primary */
.colorPrimary {
color: @primary !important;
}
.backgroundPrimary {
background: @primary !important;
}
.borderPrimary {
border-color: @primary !important;
}
/* Info */
.colorInfo {
color: @info !important;
}
.backgroundInfo {
background: @info !important;
}
.borderInfo {
border-color: @info !important;
}
/* Info */
.colorLink {
color: @link !important;
}
/* Success */
.colorSuccess {
color: @success !important;
}
.backgroundSuccess {
background: @success !important;
}
.borderSuccess {
border-color: @success !important;
}
/* Warning */
.colorWarning {
color: @warning !important;
}
.backgroundWarning {
background: @warning !important;
}
.borderWarning {
border-color: @warning !important;
}
/* Danger */
.colorDanger {
color: @danger !important;
}
.backgroundDanger {
background: @danger !important;
}
.borderDanger {
border-color: @danger !important;
}
/* Fonts */
.colorFont1 {
color: @text-color-soft3 !important;
}
.colorFont2 {
color: @text-color-secondary !important;
}
.colorFont3 {
color: @text-color-highlight !important;
}
.colorFont4 {
color: @text-color-soft !important;
}
.colorFont5 {
color: @text-color-soft2 !important;
}
.heading {
font-size: 16px;
font-weight: 300;
color: @text-color-highlight;
background-color: white;
border: none;
padding: 10px;
}
.text-center {
text-align: center !important;
}
.text-break {
word-wrap: break-word;
overflow-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
//
// Thumbnails
// --------------------------------------------------
.img-rounded {
border-radius: 3px;
}