| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 1 | @charset "utf-8"; |
| Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 2 | @import "../util"; |
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 3 | |
| Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 4 | /** |
| 5 | * Rules for the Kalamar hint helper. | ||||
| 6 | */ | ||||
| 7 | |||||
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 8 | $border-size: 2px; |
| 9 | |||||
| 10 | ul.menu.hint { | ||||
| Nils Diewald | 2488d05 | 2015-04-09 21:46:02 +0000 | [diff] [blame] | 11 | display: inline-block; |
| 12 | white-space: normal; | ||||
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 13 | text-align:left; |
| Nils Diewald | 2488d05 | 2015-04-09 21:46:02 +0000 | [diff] [blame] | 14 | top: 0; |
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 15 | max-width: 23em !important; |
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 16 | |
| 17 | > li:first-of-type { | ||||
| 18 | border-top: { | ||||
| 19 | width: 1px; | ||||
| 20 | left-radius: 0; | ||||
| 21 | right-radius: 0; | ||||
| 22 | } | ||||
| 23 | } | ||||
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 24 | } |
| 25 | |||||
| Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 26 | div.alert.hint { |
| Akron | 00cd4d1 | 2016-05-31 21:01:11 +0200 | [diff] [blame] | 27 | position: absolute; |
| Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 28 | background-color: rgba(254,26,0,.9); // from alertify |
| 29 | color: $nearly-white; | ||||
| 30 | padding: $item-padding; | ||||
| 31 | margin-top: 5px; | ||||
| 32 | box-shadow: $choose-box-shadow; | ||||
| 33 | border: { | ||||
| 34 | radius: $standard-border-radius; | ||||
| 35 | top-left-radius: 0; | ||||
| 36 | } | ||||
| Akron | 00cd4d1 | 2016-05-31 21:01:11 +0200 | [diff] [blame] | 37 | width: auto; |
| 38 | min-width: 10em; | ||||
| 39 | max-width: 23em !important; | ||||
| 40 | transition: opacity 0.2s ease 0s; | ||||
| Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 41 | } |
| 42 | |||||
| 43 | div.hint.alert::before { | ||||
| 44 | position: absolute; | ||||
| 45 | content: ""; | ||||
| 46 | display: block; | ||||
| 47 | top: -8px; | ||||
| 48 | left: 0px; | ||||
| 49 | width: 0; | ||||
| 50 | white-space: normal; | ||||
| 51 | border: { | ||||
| 52 | width: 0 8px 8px 0; | ||||
| 53 | style: solid; | ||||
| 54 | color: rgba(254,26,0,.9) transparent; // from alertify | ||||
| 55 | } | ||||
| 56 | } | ||||
| 57 | |||||
| Akron | 00cd4d1 | 2016-05-31 21:01:11 +0200 | [diff] [blame] | 58 | .hint.mirror { |
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 59 | position: absolute; |
| 60 | left: 0; | ||||
| 61 | top: 0; | ||||
| Nils Diewald | 2488d05 | 2015-04-09 21:46:02 +0000 | [diff] [blame] | 62 | z-index: 900; |
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 63 | white-space: pre-wrap; |
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 64 | height: 0; |
| Nils Diewald | 2488d05 | 2015-04-09 21:46:02 +0000 | [diff] [blame] | 65 | display: block; |
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 66 | > span { |
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 67 | opacity: 0; |
| 68 | white-space: pre-wrap; | ||||
| 69 | overflow: hidden; | ||||
| 70 | } | ||||
| Akron | 00cd4d1 | 2016-05-31 21:01:11 +0200 | [diff] [blame] | 71 | // TODO: Only in focus |
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 72 | > div { |
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 73 | position: absolute; |
| Nils Diewald | 2488d05 | 2015-04-09 21:46:02 +0000 | [diff] [blame] | 74 | display: block; |
| 75 | cursor: pointer; | ||||
| 76 | transition: left 0.2s ease 0s; | ||||
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 77 | top: 0; |
| 78 | left: 0; | ||||
| Nils Diewald | 2488d05 | 2015-04-09 21:46:02 +0000 | [diff] [blame] | 79 | text-align: left; |
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 80 | padding: 0; |
| 81 | border-top: 5px solid $dark-orange; | ||||
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 82 | height: 10px; |
| 83 | width: 1.2em; | ||||
| Nils Diewald | 2488d05 | 2015-04-09 21:46:02 +0000 | [diff] [blame] | 84 | &:hover:not(.active) { |
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 85 | border-top: 10px solid $dark-orange; |
| 86 | } | ||||
| Nils Diewald | 2488d05 | 2015-04-09 21:46:02 +0000 | [diff] [blame] | 87 | &.active { |
| 88 | border-top-width: 0; | ||||
| 89 | height: 0; | ||||
| 90 | width: 23em; | ||||
| 91 | } | ||||
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 92 | } |
| 93 | } | ||||