Marthee commited on
Commit
d374050
·
verified ·
1 Parent(s): 96f579c

Update static/searchButton.css

Browse files
Files changed (1) hide show
  1. static/searchButton.css +26 -18
static/searchButton.css CHANGED
@@ -58,7 +58,7 @@ margin-left: 172px;
58
 
59
  }
60
  #tomeasureSearchInput:focus , #relevantSearchInput:focus {
61
- width: 191px;
62
  background-color: #fff;
63
  border-color: #1b1d1c;
64
  box-shadow: 0 0 5px rgba(109, 207, 246, .5);
@@ -67,20 +67,28 @@ margin-left: 172px;
67
  width:165px;
68
  }
69
 
70
- /* input:-moz-placeholder {
71
- color: #999;
72
- } */
73
-
74
- /* input::-webkit-input-placeholder {
75
- color: #999;
76
- } */
77
- /*
78
- #myForm {
79
- position: relative;
80
- width: 160px;
81
- } */
82
-
83
- /* #myForm input[type=search] {
84
- position: absolute;
85
- /* right: 0; */
86
- /* } */
 
 
 
 
 
 
 
 
 
58
 
59
  }
60
  #tomeasureSearchInput:focus , #relevantSearchInput:focus {
61
+ width: 160px;
62
  background-color: #fff;
63
  border-color: #1b1d1c;
64
  box-shadow: 0 0 5px rgba(109, 207, 246, .5);
 
67
  width:165px;
68
  }
69
 
70
+ .input-containerSearchPaste {
71
+ position: relative;
72
+ display: inline-block;
73
+ }
74
+
75
+ /* Clipboard icon - initially hidden */
76
+ .clipboard-icon ,.searchfocusx{
77
+ position: absolute;
78
+ top: 10px;
79
+ right: 20px;
80
+ color: #555;
81
+ font-size: 16px;
82
+ opacity: 0;
83
+ pointer-events: none;
84
+ transition: opacity 0.3s ease;
85
+ }
86
+ .searchfocusx{
87
+ right:4px;
88
+ }
89
+
90
+ #tomeasureSearchInput:focus ~ .clipboard-icon,
91
+ #tomeasureSearchInput:focus ~ .searchfocusx {
92
+ opacity: 1;
93
+ pointer-events: auto;
94
+ }