-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Switched to .less style sheets.
- Loading branch information
1 parent
48ad7bb
commit 4eb7878
Showing
22 changed files
with
572 additions
and
223 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
div.chrono-container { | ||
margin-top: 7em; | ||
|
||
> div.headline { | ||
display: flex; | ||
justify-content: center; | ||
align-items: flex-end; | ||
margin-bottom: 0.5em; | ||
|
||
span.version-number { | ||
color: #222222; | ||
font-size: 0.6em; | ||
font-weight: bold; | ||
z-index: 0; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
div.note-container { | ||
margin-left: auto; | ||
margin-right: auto; | ||
margin-top: 1.5em; | ||
|
||
> div.ui.cards { | ||
justify-content: center; | ||
} | ||
|
||
&.mobile > div.note-menu > div.buttons { | ||
position: fixed; | ||
bottom: 7%; | ||
right: 5%; | ||
z-index: 2; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
137 changes: 0 additions & 137 deletions
137
src/Chrono/ClientApp/src/Features/TaskLists/TaskListEditControl.css
This file was deleted.
Oops, something went wrong.
105 changes: 105 additions & 0 deletions
105
src/Chrono/ClientApp/src/Features/TaskLists/TaskListEditControl.less
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
div.tasklist { | ||
> div.tasklist-menu { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-end; | ||
align-items: center; | ||
} | ||
|
||
div.tasklist-items { | ||
> div.tasklist-item { | ||
/* Overwrite Semantic UI media queries */ | ||
width: 100% !important; | ||
margin-left: auto !important; | ||
margin-right: auto !important; | ||
|
||
> div.content { | ||
width: 100% !important; | ||
margin-left: auto !important; | ||
margin-right: auto !important; | ||
|
||
div { | ||
margin-left: 0 !important; | ||
margin-right: 0 !important; | ||
} | ||
|
||
> div.header { | ||
width: 100% !important; | ||
justify-content: space-between; | ||
display: flex; | ||
margin-left: 0 !important; | ||
|
||
> div.headline { | ||
display: flex; | ||
align-items: center; | ||
flex-wrap: nowrap; | ||
|
||
> a.task-name { | ||
margin-left: 0.15em; | ||
vertical-align: middle; | ||
overflow-wrap: anywhere; | ||
} | ||
} | ||
|
||
> div.actions { | ||
min-width: 115px; | ||
margin-left: 0 !important; | ||
margin-right: 0 !important; | ||
} | ||
} | ||
|
||
> div.description { | ||
margin-left: 0 !important; | ||
margin-right: 0 !important; | ||
|
||
ul, li { | ||
white-space: normal; | ||
margin-bottom: 0.25em; | ||
} | ||
|
||
> * { | ||
white-space: pre-line; | ||
overflow-wrap: anywhere; | ||
} | ||
} | ||
|
||
> div.extra { | ||
margin-left: 0 !important; | ||
margin-right: 0 !important; | ||
} | ||
} | ||
} | ||
} | ||
|
||
// Mobile view | ||
&.mobile { | ||
margin-left: 0 !important; | ||
margin-right: 0 !important; | ||
|
||
div.tasklist-menu { | ||
flex-direction: column; | ||
align-items: flex-end; | ||
|
||
> div.filters { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: space-between; | ||
flex-direction: row; | ||
align-items: center; | ||
width: 100%; | ||
|
||
> div.dropdown { | ||
width: 49.6%; | ||
margin: 0 !important; | ||
} | ||
} | ||
|
||
> div.buttons { | ||
position: fixed; | ||
bottom: 7%; | ||
right: 5%; | ||
z-index: 2; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 0 additions & 20 deletions
20
src/Chrono/ClientApp/src/Features/Tasks/TaskEditControl.css
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.