mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 22:24:36 +00:00
hide screenshot buttons for mozilla browsers (closes #9)
This commit is contained in:
parent
24d6c4c1f2
commit
cca49fc577
2 changed files with 10 additions and 1 deletions
|
@ -191,6 +191,15 @@ body {
|
|||
}
|
||||
}
|
||||
|
||||
// Firefox doesn't support screenshot mode yet
|
||||
@-moz-document url-prefix() {
|
||||
#controls > span.camera,
|
||||
.player > .menu .screenshot,
|
||||
.bluffs > svg.fa-camera {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
|
|
|
@ -123,7 +123,7 @@
|
|||
<font-awesome-icon icon="exchange-alt" />
|
||||
Swap seats
|
||||
</li>
|
||||
<li @click="takeScreenshot">
|
||||
<li class="screenshot" @click="takeScreenshot">
|
||||
<font-awesome-icon icon="camera" />
|
||||
Screenshot
|
||||
</li>
|
||||
|
|
Loading…
Add table
Reference in a new issue