diff options
author | 杨宇千 <crupest@outlook.com> | 2019-02-22 15:24:26 +0000 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-02-22 15:24:26 +0000 |
commit | fe5838a966a314b72ecb4d992f86f5fce635a96f (patch) | |
tree | 6d00a55b9e5f98315384f33aaf5bfc5a60645a0d /Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css | |
parent | 25e606b67506b3bc0242414aebe472f13a02bd9c (diff) | |
parent | e236b5064cd62f40bc910fafe48ac4b9701a4bcd (diff) | |
download | timeline-fe5838a966a314b72ecb4d992f86f5fce635a96f.tar.gz timeline-fe5838a966a314b72ecb4d992f86f5fce635a96f.tar.bz2 timeline-fe5838a966a314b72ecb4d992f86f5fce635a96f.zip |
Merged PR 5: Develop link feature on todo page.
Develop link feature on todo page.
Related work items: #1, #3
Diffstat (limited to 'Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css')
-rw-r--r-- | Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css | 41 |
1 files changed, 26 insertions, 15 deletions
diff --git a/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css b/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css index 6a603863..89a0f0ce 100644 --- a/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css +++ b/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css @@ -2,20 +2,15 @@ align-self: flex-end; } -.first-item-box { - justify-content: space-between; -} - .item-box { display: flex; width: 100%; - padding: 10px; + padding: 5px; box-sizing: border-box; } -.sample-box { - box-sizing: border-box; - align-self: flex-start; +.first-item-box { + justify-content: space-between; } .item-id { @@ -26,13 +21,6 @@ height: 1.2rem; } -.item-id-sample { - display: inline-block; - border-radius: 0.2em; - width: 1em; - height: 1em; -} - .item-id-open { background: red; } @@ -40,3 +28,26 @@ .item-id-closed { background: green; } + +.item-title { + margin-left: 5px; + color: black; + text-decoration: none; +} + +.sample-box { + box-sizing: border-box; + align-self: flex-start; +} + +.sample-container { + display: flex; + align-items: center; +} + +.item-id-sample { + border-radius: 0.2em; + width: 1em; + height: 1em; + margin-right: 2px; +} |