Skip to content

Commit 86882a6

Browse files
committed
removed hover on small profile icons
1 parent de750c6 commit 86882a6

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

src/assets/editor.scss

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@
3939
-moz-transition: -moz-box-shadow 100ms ease-in;
4040
transition: box-shadow 100ms ease-in;
4141
}
42-
.round-profile:hover {
43-
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
44-
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
45-
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
46-
}
4742
.round-profile.big {
4843
width: 5em;
4944
height: 5em;

src/components/editor.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737

3838
<h3>Collaberators</h3>
3939
<div>
40-
<i class="user" v-for="user in users" :key="user.uid">
41-
<img :src="user.profile_picture" :alt="user.name" class="round-profile big" @click="removeUser(user)" v-tooltip="user.name">
40+
<i class="user" v-for="user in users" :key="user.uid" v-tooltip="user.name">
41+
<img :src="user.profile_picture" :alt="user.name" class="round-profile big" @click="removeUser(user)" >
4242
&nbsp;
4343
</i>
4444
</div>

0 commit comments

Comments
 (0)