diff options
author | crupest <crupest@outlook.com> | 2023-09-14 23:47:16 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-09-16 23:06:31 +0800 |
commit | aef14be13c3bd9e93eeea598dbfbf707ba98d448 (patch) | |
tree | bb0a4199849dec57c5f0c190cb213fc22296622c /FrontEnd/src/components/index.css | |
parent | 754597d49cd2d3f6295e5fe3ed68c6210bf4e8a5 (diff) | |
download | timeline-aef14be13c3bd9e93eeea598dbfbf707ba98d448.tar.gz timeline-aef14be13c3bd9e93eeea598dbfbf707ba98d448.tar.bz2 timeline-aef14be13c3bd9e93eeea598dbfbf707ba98d448.zip |
...
Diffstat (limited to 'FrontEnd/src/components/index.css')
-rw-r--r-- | FrontEnd/src/components/index.css | 66 |
1 files changed, 7 insertions, 59 deletions
diff --git a/FrontEnd/src/components/index.css b/FrontEnd/src/components/index.css index 32e762cb..de156e0e 100644 --- a/FrontEnd/src/components/index.css +++ b/FrontEnd/src/components/index.css @@ -13,69 +13,17 @@ body { line-height: 1.2;
}
-.cru-page {
- padding: var(--cru-page-padding);
+textarea {
+ transition: border-color 0.3s;
+ border-color: var(--cru-text-minor-color);
}
-.cru-page-no-top-padding {
- padding-top: 0;
+textarea:hover {
+ border-color: var(--cru-clickable-primary-hover-color);
}
-.cru-text-center {
- text-align: center;
-}
-
-.cru-text-end {
- text-align: end;
-}
-
-.cru-float-left {
- float: left;
-}
-
-.cru-float-right {
- float: right;
-}
-
-.cru-align-text-bottom {
- vertical-align: text-bottom;
-}
-
-.cru-align-middle {
- vertical-align: middle;
-}
-
-.cru-clearfix::after {
- clear: both;
-}
-
-.cru-fill-parent {
- width: 100%;
- height: 100%;
-}
-
-.cru-avatar {
- width: 60px;
- height: 60px;
-}
-
-.cru-avatar.large {
- width: 100px;
- height: 100px;
-}
-
-.cru-avatar.small {
- width: 40px;
- height: 40px;
-}
-
-.cru-round {
- border-radius: 50%;
-}
-
-.cru-tab-pages-action-area {
- display: flex;
- align-items: center;
+textarea:focus {
+ border-color: var(--cru-clickable-primary-normal-color);
}
.alert-container {
|