Improve dropdown icons
This commit is contained in:
@@ -18,7 +18,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<div class="dropdown">
|
<div class="dropdown">
|
||||||
<a href="#" class="dropdown-menu dropdown-menu-link-icon">#<?= $group['id'] ?> <i class="fa fa-caret-down"></i></a>
|
<a href="#" class="dropdown-menu dropdown-menu-link-icon"><strong>#<?= $group['id'] ?> <i class="fa fa-caret-down"></i></strong></a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><?= $this->modal->medium('plus', t('Add group member'), 'GroupListController', 'associate', array('group_id' => $group['id'])) ?></li>
|
<li><?= $this->modal->medium('plus', t('Add group member'), 'GroupListController', 'associate', array('group_id' => $group['id'])) ?></li>
|
||||||
<li><?= $this->url->icon('users', t('Members'), 'GroupListController', 'users', array('group_id' => $group['id'])) ?></li>
|
<li><?= $this->url->icon('users', t('Members'), 'GroupListController', 'users', array('group_id' => $group['id'])) ?></li>
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<div class="dropdown">
|
<div class="dropdown">
|
||||||
<a href="#" class="dropdown-menu dropdown-menu-link-icon"><?= '#'.$user['id'] ?> <i class="fa fa-caret-down"></i></a>
|
<a href="#" class="dropdown-menu dropdown-menu-link-icon"><strong><?= '#'.$user['id'] ?> <i class="fa fa-caret-down"></i></strong></a>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<?= $this->url->icon('user', t('View profile'), 'UserViewController', 'show', array('user_id' => $user['id'])) ?>
|
<?= $this->url->icon('user', t('View profile'), 'UserViewController', 'show', array('user_id' => $user['id'])) ?>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<div class="dropdown">
|
<div class="dropdown">
|
||||||
<a href="#" class="dropdown-menu dashboard-table-link">#<?= $project['id'] ?></a>
|
<a href="#" class="dropdown-menu dropdown-menu-link-icon"><strong>#<?= $project['id'] ?> <i class="fa fa-caret-down"></i></strong></a>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<?= $this->url->icon('th', t('Board'), 'BoardViewController', 'show', array('project_id' => $project['id'])) ?>
|
<?= $this->url->icon('th', t('Board'), 'BoardViewController', 'show', array('project_id' => $project['id'])) ?>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<div class="dropdown">
|
<div class="dropdown">
|
||||||
<a href="#" class="dropdown-menu">#<?= $task['id'] ?> <i class="fa fa-caret-down"></i></a>
|
<a href="#" class="dropdown-menu dropdown-menu-link-icon"><strong>#<?= $task['id'] ?> <i class="fa fa-caret-down"></i></strong></a>
|
||||||
<ul>
|
<ul>
|
||||||
<?php if (array_key_exists('date_started', $task) && empty($task['date_started'])): ?>
|
<?php if (array_key_exists('date_started', $task) && empty($task['date_started'])): ?>
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
<?php foreach ($paginator->getCollection() as $task): ?>
|
<?php foreach ($paginator->getCollection() as $task): ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="task-table color-<?= $task['color_id'] ?>">
|
<td class="color-<?= $task['color_id'] ?>">
|
||||||
<?php if ($this->user->hasProjectAccess('TaskModificationController', 'edit', $task['project_id'])): ?>
|
<?php if ($this->user->hasProjectAccess('TaskModificationController', 'edit', $task['project_id'])): ?>
|
||||||
<?= $this->render('task/dropdown', array('task' => $task)) ?>
|
<?= $this->render('task/dropdown', array('task' => $task)) ?>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<div class="dropdown">
|
<div class="dropdown">
|
||||||
<a href="#" class="dropdown-menu dropdown-menu-link-icon"><?= '#'.$user['id'] ?> <i class="fa fa-caret-down"></i></a>
|
<a href="#" class="dropdown-menu dropdown-menu-link-icon"><strong><?= '#'.$user['id'] ?> <i class="fa fa-caret-down"></i></strong></a>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<?= $this->url->icon('user', t('View profile'), 'UserViewController', 'show', array('user_id' => $user['id'])) ?>
|
<?= $this->url->icon('user', t('View profile'), 'UserViewController', 'show', array('user_id' => $user['id'])) ?>
|
||||||
|
|||||||
2
assets/css/app.min.css
vendored
2
assets/css/app.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -59,7 +59,16 @@ ul.dropdown-submenu-open
|
|||||||
|
|
||||||
td
|
td
|
||||||
a.dropdown-menu
|
a.dropdown-menu
|
||||||
i
|
strong
|
||||||
color: #dedede
|
|
||||||
&:hover i
|
|
||||||
color: color('primary')
|
color: color('primary')
|
||||||
|
i
|
||||||
|
color: color('primary')
|
||||||
|
i
|
||||||
|
color: color('lighter')
|
||||||
|
&:hover
|
||||||
|
strong
|
||||||
|
color: color('medium')
|
||||||
|
i
|
||||||
|
color: color('medium')
|
||||||
|
i
|
||||||
|
color: color('primary')
|
||||||
|
|||||||
@@ -20,8 +20,6 @@ div
|
|||||||
a
|
a
|
||||||
color: color('dark')
|
color: color('dark')
|
||||||
text-decoration: none
|
text-decoration: none
|
||||||
.dropdown-menu
|
|
||||||
font-weight: bold
|
|
||||||
|
|
||||||
.task-board-collapsed
|
.task-board-collapsed
|
||||||
overflow: hidden
|
overflow: hidden
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
@import variables
|
|
||||||
|
|
||||||
.task-table .dropdown-menu
|
|
||||||
color: color('dark')
|
|
||||||
text-decoration: none
|
|
||||||
font-weight: bold
|
|
||||||
&:focus, &:hover
|
|
||||||
text-decoration: underline
|
|
||||||
|
|
||||||
td.task-table a
|
|
||||||
color: color('dark')
|
|
||||||
text-decoration: none
|
|
||||||
&:hover
|
|
||||||
text-decoration: underline
|
|
||||||
@@ -41,7 +41,6 @@
|
|||||||
@import task_tags
|
@import task_tags
|
||||||
@import task_summary
|
@import task_summary
|
||||||
@import task_form
|
@import task_form
|
||||||
@import task_listing
|
|
||||||
@import comment
|
@import comment
|
||||||
@import subtasks
|
@import subtasks
|
||||||
@import task_links
|
@import task_links
|
||||||
|
|||||||
Reference in New Issue
Block a user