app/assets/stylesheets/copyray.css in copy_tuner_client-0.1.1.beta18 vs app/assets/stylesheets/copyray.css in copy_tuner_client-0.1.1.beta19
- old
+ new
@@ -77,5 +77,22 @@
.copyray-specimen-handle.BlurbSpecimen {
background: rgba(255,50,50,0.8);
color: #fff;
}
+a.copyray-toggle-button {
+ display: block;
+ position: fixed;
+ left: 0;
+ bottom: 0;
+ color: white;
+ background: black;
+ padding: 16px 20px;
+ border-radius: 0 10px 0 0;
+ opacity: 0;
+ transition: opacity 0.6s ease-in-out;
+ z-index: 10000;
+}
+
+a.copyray-toggle-button:hover {
+ opacity: 1;
+}