| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- .selectionContainer {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- z-index: 2;
- }
- .position {
- position: absolute;
- }
- .note {
- cursor: pointer;
- }
- .staveBox {
- background-color: var(--active-stave-box) !important;
- }
- .leftStaveBox {
- background-color: var(--active-stave-box);
- &::before {
- content: '';
- position: absolute;
- left: -5px;
- top: -5px;
- width: 5px;
- height: 100%;
- border-top: 5px solid var(--van-primary-color);
- border-left: 5px solid var(--van-primary-color);
- border-bottom: 5px solid var(--van-primary-color);
- }
- }
- .rightStaveBox {
- background-color: var(--active-stave-box);
- &::after {
- content: '';
- position: absolute;
- right: -5px;
- top: -5px;
- width: 5px;
- height: 100%;
- border-top: 5px solid var(--van-primary-color);
- border-right: 5px solid var(--van-primary-color);
- border-bottom: 5px solid var(--van-primary-color);
- }
- }
- .centerStaveBox {
- background-color: var(--active-stave-box);
- &::before {
- content: '';
- position: absolute;
- left: -5px;
- top: -5px;
- width: 5px;
- height: 100%;
- border-top: 5px solid var(--van-primary-color);
- border-left: 5px solid var(--van-primary-color);
- border-bottom: 5px solid var(--van-primary-color);
- }
- &::after {
- content: '';
- position: absolute;
- right: -5px;
- top: -5px;
- width: 5px;
- height: 100%;
- border-top: 5px solid var(--van-primary-color);
- border-right: 5px solid var(--van-primary-color);
- border-bottom: 5px solid var(--van-primary-color);
- }
- }
- .prepareStaveBox {
- background-color: rgba(255, 98, 37, 0.18);
- }
- .disable {
- pointer-events: none;
- }
- .line {
- position: absolute;
- height: 120%;
- background-color: rgba(25, 140, 254, 0.7);
- min-height: 58PX;
- // width: 14PX;
- margin-top: -14PX;
- border-radius: 4Px;
- opacity: var(--corsor-opacity);
- }
- .lineStaff {
- width: 14PX;
- }
- .lineJianPu {
- width: 18PX;
- }
- :global {
- .lineHide {
- opacity: 0 !important;
- }
- }
- .scoreItem {
- position: absolute;
- left: 50%;
- top: -90%;
- transform: translateX(-50%);
- font-size: 16px;
- font-family: "Roboto", sans-serif;
- font-weight: bold;
- display: flex;
- align-items: center;
- pointer-events: none;
- transition: all .8s;
- img {
- height: 30px;
- }
- }
- :global {
- .scoreItemLeve0 {
- background-color: rgba(255, 142, 142, 0.32);
- }
- .scoreItemLeve1 {
- background-color: rgba(1, 193, 181, 0.2);
- }
- .scoreItemLeve2 {
- background-color: rgba(255, 178, 82, 0.37);
- }
- .scoreItemLeve3 {
- background-color: rgba(255, 220, 64, 0.4);
- }
- .centerTop-enter-active {
- opacity: 1;
- }
- .centerTop-enter-from {
- opacity: 0;
- left: 50%;
- top: 50%;
- transform: translateX(-50%) translateY(-50%) scale(.3);
- }
- }
- .dotWrap {
- position: absolute;
- top: -10px;
- right: 6%;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 20px;
- height: 20px;
- border-radius: 50%;
- background-color: rgb(255, 145, 0);
- color: #fff;
- font-weight: bold;
- font-size: 14px;
- }
- .noteFollow {
- pointer-events: none;
- text-align: center;
- display: none;
- :global {
- .van-icon-success,
- .van-icon-cross {
- display: none;
- }
- }
- }
- :global {
- .follow-error {
- display: block;
- .van-icon-cross {
- display: block;
- }
- }
- .follow-down {
- .van-icon-cross {
- color: #ffca67 !important;
- }
- .vf-note path {
- fill: #ffca67 !important;
- stroke: #ffca67 !important;
- }
- }
- .follow-up {
- .van-icon-cross {
- color: rgb(255, 0, 0) !important;
- }
- .vf-note path {
- fill: rgb(255, 0, 0) !important;
- stroke: rgb(255, 0, 0) !important;
- }
- }
- .follow-success {
- display: block;
- .van-icon-success {
- display: block;
- color: #07c160;
- }
- }
- }
|