| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- .nut-actionsheet-panel {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- width: 100%;
- max-height: 80%;
- overflow: auto;
- z-index: $zindex-actionsheet;
- background-color: $body-background;
- }
- .nut-actionsheet-modal {
- padding: 10px;
- margin: 0;
- text-align: center;
- background-color: #fff;
- border-bottom: 1px solid $light-color;
- .nut-actionsheet-title,
- .nut-actionsheet-sub-title {
- padding: 5px 0;
- }
- .nut-actionsheet-title {
- font-size: $font-size-base;
- color: $title-color;
- }
- .nut-actionsheet-sub-title {
- font-size: $font-size-small;
- color: $title-color;
- margin-inline-start: 0px;
- }
- }
- .nut-actionsheet-menu {
- list-style: none;
- padding: 0;
- margin: 0;
- }
- .nut-actionsheet-cancel,
- .nut-actionsheet-item {
- // height: 24px;
- padding: 10px;
- line-height: 24px;
- font-size: $font-size-base;
- color: $title-color;
- text-align: center;
- background-color: #fff;
- }
- .desc {
- font-size: 14px;
- color: #999;
- }
- .subdesc {
- display: block;
- font-size: 12px;
- color: #999;
- }
- .nut-actionsheet-item {
- border-bottom: 1px solid $light-color;
- cursor: pointer;
- }
- .nut-actionsheet-item-active {
- color: $primary-color;
- }
- .nut-actionsheet-item-disabled {
- color: #e1e1e1;
- cursor: not-allowed;
- }
- .nut-actionsheet-cancel {
- margin-top: 5px;
- border-top: 1px solid $light-color;
- }
|