mirror of https://github.com/bra1n/townsquare.git
hide screenshot buttons for mozilla browsers (closes #9)
This commit is contained in:
parent
24d6c4c1f2
commit
cca49fc577
|
@ -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;
|
box-sizing: border-box;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
@ -123,7 +123,7 @@
|
||||||
<font-awesome-icon icon="exchange-alt" />
|
<font-awesome-icon icon="exchange-alt" />
|
||||||
Swap seats
|
Swap seats
|
||||||
</li>
|
</li>
|
||||||
<li @click="takeScreenshot">
|
<li class="screenshot" @click="takeScreenshot">
|
||||||
<font-awesome-icon icon="camera" />
|
<font-awesome-icon icon="camera" />
|
||||||
Screenshot
|
Screenshot
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in New Issue