mirror of
https://github.com/flarum/framework.git
synced 2025-02-09 05:07:13 +08:00
![Sami Mazouz](/assets/img/avatar_default.png)
* refactor: Avatar classes refactor * refactor: Badge classes refactor * chore: Remove commented dead code * chore: Remove SignUpModal dead CSS code Flarum seem to have had some kind of user display in the sign up modal on successful sign up, which no longer exists. https://github.com/flarum/core/blob/v0.1.0-beta/js/forum/src/components/SignUpModal.js#L111 * chore: Deprecate unneeded vendor mixins * chore: Normalize property values format Co-authored-by: David Wheatley <hi@davwheat.dev> * chore: Remove @-webkit-keyframes * chore: Combine animation properties * chore: Avoid `all` for transition * chore: translate3d is no longer necessary for hardware acceleration * fix: Lost cursor pointer to normalize update * chore: Use CSS variables for more things * chore: Remove unecessary overspecification Co-authored-by: David Wheatley <hi@davwheat.dev>
161 lines
2.2 KiB
Plaintext
161 lines
2.2 KiB
Plaintext
* {
|
|
&,
|
|
&:before,
|
|
&:after {
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background: @body-bg;
|
|
color: @text-color;
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, Cantarell, Oxygen, Roboto, Helvetica, Arial, sans-serif;
|
|
font-size: 13px;
|
|
line-height: 1.5;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
line-height: 1.3;
|
|
}
|
|
|
|
input,
|
|
button,
|
|
select,
|
|
textarea {
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
}
|
|
|
|
a {
|
|
cursor: pointer;
|
|
color: @link-color;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
hr {
|
|
margin-top: 15px;
|
|
margin-bottom: 15px;
|
|
border: 0;
|
|
border-top: 2px solid @control-bg;
|
|
}
|
|
|
|
p {
|
|
margin: 0 0 10px;
|
|
}
|
|
|
|
.container {
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
.clearfix();
|
|
|
|
@media @tablet {
|
|
width: @screen-tablet;
|
|
}
|
|
@media @desktop {
|
|
width: @screen-desktop;
|
|
}
|
|
@media @desktop-hd {
|
|
width: @screen-desktop-hd;
|
|
}
|
|
}
|
|
|
|
.containerNarrow {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
mark {
|
|
background: #FFE300;
|
|
padding: 1px;
|
|
border-radius: @border-radius;
|
|
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
fieldset {
|
|
padding: 0;
|
|
margin: 0;
|
|
border: 0;
|
|
|
|
> ul > li {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
legend {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
color: @text-color;
|
|
}
|
|
input[type="search"] {
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
.checkbox {
|
|
display: block;
|
|
padding-left: 20px;
|
|
margin-bottom: 5px;
|
|
cursor: pointer;
|
|
|
|
input[type=checkbox],
|
|
input[type=radio] {
|
|
margin-left: -20px;
|
|
margin-top: 2px;
|
|
float: left;
|
|
}
|
|
}
|
|
|
|
.fade {
|
|
opacity: 0;
|
|
transition: opacity .15s linear;
|
|
&.in {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
.darkenBackground {
|
|
background: @shadow-color;
|
|
}
|
|
|
|
blockquote p:last-child,
|
|
blockquote ul:last-child,
|
|
blockquote ol:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
@media @tablet-up {
|
|
.affix {
|
|
position: fixed;
|
|
}
|
|
}
|
|
|
|
.RequestErrorModal {
|
|
pre {
|
|
white-space: pre-wrap;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
#flarum-loading {
|
|
text-align: center;
|
|
padding: 50px 0;
|
|
font-size: 18px;
|
|
color: @muted-more-color;
|
|
}
|
|
|
|
.visually-hidden {
|
|
clip: rect(0 0 0 0);
|
|
clip-path: inset(50%);
|
|
height: 1px;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
white-space: nowrap;
|
|
width: 1px;
|
|
}
|