-
Notifications
You must be signed in to change notification settings - Fork 310
some design changes in board list #182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -676,6 +676,10 @@ button.button-inline:hover { | |
| overflow: scroll; | ||
| } | ||
|
|
||
| #boardlist thead td { | ||
| color: #999; | ||
| } | ||
|
|
||
| #boardlist td .board-bullet { | ||
| width: 30px; | ||
| height: 30px; | ||
|
|
@@ -685,11 +689,6 @@ button.button-inline:hover { | |
| cursor: pointer; | ||
| display: block; | ||
| } | ||
| #boardlist .app-popover-menu-utils { | ||
| width: 30px; | ||
| display: inline; | ||
| position: relative; | ||
| } | ||
|
|
||
| .popovermenu ul { | ||
| display: flex !important; | ||
|
|
@@ -708,7 +707,7 @@ button.button-inline:hover { | |
| } | ||
|
|
||
| .cell-board-bullet { | ||
| width: 60px; | ||
| width: 50px; | ||
| } | ||
|
|
||
| .cell-board-title { | ||
|
|
@@ -719,6 +718,10 @@ button.button-inline:hover { | |
| opacity: 0.5; | ||
| } | ||
|
|
||
| #boardlist tbody tr:last-child td { | ||
| opacity: 0.5; | ||
| } | ||
|
|
||
| #boardlist td form { | ||
| display: flex; | ||
| width: 100%; | ||
|
|
@@ -738,8 +741,20 @@ button.button-inline:hover { | |
|
|
||
| #boardlist td .app-popover-menu-utils { | ||
| float: right; | ||
| width: 30px; | ||
| display: inline; | ||
| position: relative; | ||
| } | ||
|
|
||
| #boardlist td .app-popover-menu-utils button { | ||
| opacity: 0.3; | ||
| } | ||
|
|
||
| #boardlist td .app-popover-menu-utils:hover button { | ||
| opacity: 0.7; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Part of the above comment - In the long term, this should all be moved into
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @pixelipo currently it has same behavior like files
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That doesn't make it correct, @artemanufrij - plus it gives us a third opacity behaviour for the same button:
I will make a PR to Files to fix it there as well.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @pixelipo you are right... i focused only board list |
||
| } | ||
|
|
||
|
|
||
| #boardlist .popovermenu { | ||
| margin-top: 5px; | ||
| } | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,7 +24,7 @@ | |
| <td> | ||
| <div class="hint"></div> | ||
| <div class="app-popover-menu-utils" ng-if="b.deletedAt == 0"> | ||
| <button class="icon icon-more button-inline" title="More actions"></button> | ||
| <button class="icon icon-more button-inline" title="<?php p($l->t('More actions')); ?>"></button> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Great catch! |
||
| <div class="popovermenu bubble hidden"> | ||
| <ul> | ||
| <li ng-if="boardservice.canManage(b) && !b.archived" ng-click="boardArchive(b)"> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't really see the point in using 4 different opacity levels. Difference between 0.3 and 0.5 or 0.5 and 0.7 is barely noticable and it doesn't give away any additional message to the user.
I'm working on cleaning up opacity definitions in nextcloud/server and the idea is to use 0.5 and 1 for most of the situations, and I think this is a perfect example. Triple-dot button should have 50% opacity normally and 100% when hovered/focused/selected wherever it is used.