12345678910111213141516171819202122232425262728293031323334353637 |
- .stag-shortcuts {
- position: absolute;
- border: 1px solid #aaa;
- background: #fff;
- margin-top: 1.3rem;
- display: none;
- min-width: 160px;
- max-width: 280px;
- z-index: 99999;
- }
- .stag-shortcuts>.sc {
- font-size: 13px;
- padding: 2px 6px;
- white-space: nowrap;
- width: 100%;
- cursor: pointer;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .stag-shortcuts>.sc:hover {
- background-color: aliceblue;
- }
- .stag-shortcuts>.sc:not(:last-child) {
- border-bottom: 1px solid #ccc;
- }
- .stag-shortcuts>.sc.active {
- background-color: #cfe1f1;
- }
- form#create-shortcut-form {
- position: absolute;
- background: #fff;
- padding: 10px;
- border: 1px solid #ccc;
- border-radius: 3px;
- display: none;
- z-index: 101;
- }
|