Added cursor:pointer to passman-control

Signed-off-by: Felix Nüsse <Felix.nuesse@t-online.de>
This commit is contained in:
Felix Nüsse 2018-10-13 12:51:46 +02:00 committed by fnuesse
parent 2bd9dcf28e
commit 4c864c55be
No known key found for this signature in database
GPG key ID: 2089A3431243E819
2 changed files with 8 additions and 8 deletions

View file

@ -40,10 +40,10 @@
//width: 100%; //width: 100%;
#app-content-wrapper { #app-content-wrapper {
min-height: 95%; min-height: 95%;
//display: block;
display:flex; display:flex;
//hack for missing separatorbar when app-sidebar is opened //hack for missing separatorbar when app-sidebar is opened
height: calc(100vh - 49px); height: calc(100vh - 49px);
#passman-controls { #passman-controls {
text-align: center; text-align: center;
&.sidebar-shown { &.sidebar-shown {
@ -173,7 +173,7 @@
background-color: #f8f8f8; background-color: #f8f8f8;
} }
td { td {
cursor: pointer !important; cursor: pointer;
padding: 5px; padding: 5px;
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
.icon { .icon {
@ -191,7 +191,7 @@
opacity: 0.4; opacity: 0.4;
height: 20px; height: 20px;
width: 32px; width: 32px;
cursor: pointer !important; cursor: pointer;
} }
.icon-more:hover { .icon-more:hover {
opacity: 1; opacity: 1;
@ -254,7 +254,7 @@
padding: 2px; padding: 2px;
flex-direction: column; flex-direction: column;
width: 100%; width: 100%;
cursor: pointer !important; cursor: pointer;
font-size: 1.75em; font-size: 1.75em;
text-align: center; text-align: center;
.label { .label {
@ -383,7 +383,7 @@
font-size: 13px; font-size: 13px;
width: 15%; width: 15%;
i { i {
cursor: pointer !important; cursor: pointer;
} }
} }
td, th { td, th {
@ -602,7 +602,7 @@
font-size: 14px; font-size: 14px;
border: 1px solid #ddd; border: 1px solid #ddd;
background-color: lighten(#ddd, 5%); background-color: lighten(#ddd, 5%);
cursor: pointer !important; cursor: pointer;
@include border-left-radius(6px); @include border-left-radius(6px);
//img { //img {
// height: 16px; // height: 16px;

View file

@ -6,10 +6,10 @@
<a ng-click="logout()"><i class="fa fa-home"></i></a> <a ng-click="logout()"><i class="fa fa-home"></i></a>
</div> </div>
<div class="crumb svg" ng-click="clearState()"> <div class="crumb svg" ng-click="clearState()">
<span>{{active_vault.name}}</span> <a>{{active_vault.name}}</a>
</div> </div>
<div class="crumb svg last" ng-hide="delete_time>0"> <div class="crumb svg last" ng-hide="delete_time>0">
<span ng-click="addCredential()">{{ 'New' | translate}}</span> <a ng-click="addCredential()">{{ 'New' | translate}}</a>
</div> </div>
</div> </div>
</div> </div>