1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-05 20:19:51 +00:00

minor color changes

This commit is contained in:
Paul Nettleton 2022-08-02 11:02:01 -05:00
parent 25f0d4e6d5
commit e56403a6b5
3 changed files with 6 additions and 3 deletions

View File

@ -243,7 +243,7 @@ class _BucketTaskCardState extends State<BucketTaskCard> with AutomaticKeepAlive
final dropBoxSize = _dropData?.size ?? _cardSize;
final dropBox = DottedBorder(
color: Colors.white,
color: Colors.grey,
child: SizedBox.fromSize(size: dropBoxSize),
);
final dropAbove = taskState.taskDragging && _dropLocation == DropLocation.above;

View File

@ -69,7 +69,10 @@ class TaskTileState extends State<TaskTile> with AutomaticKeepAliveClientMixin {
// TODO: get list name of task
//TextSpan(text: widget.task.list.title+" - ", style: TextStyle(color: Colors.grey)),
TextSpan(text: widget.task.title),
]
],
style: TextStyle(
color: Theme.of(context).brightness == Brightness.dark ? Colors.white : Colors.black,
),
)
) : Text(_currentTask.title),
controlAffinity: ListTileControlAffinity.leading,

View File

@ -509,7 +509,7 @@ class _ListPageState extends State<ListPage> {
Column(
children: <Widget>[
if (_bucketProps[bucket.id].taskDropSize != null) DottedBorder(
color: Colors.white,
color: Colors.grey,
child: SizedBox.fromSize(size: _bucketProps[bucket.id].taskDropSize),
),
Align(