123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- @import '../../app.less';
- .icon {
- display: inline-block;
- vertical-align: middle;
- cursor: pointer;
- }
- .icon.sceen-full {
- width: 36px;
- height: 36px;
- background: url('/assets/screen_full_normal.png') no-repeat center;
- }
- .icon.sceen-full.active,
- .icon.sceen-full:hover {
- background-image: url('/assets/screen_full_highlight.png');
- }
- .icon.sceen-restore {
- width: 36px;
- height: 36px;
- background: url('/assets/screen_restore_normal.png') no-repeat center;
- }
- .icon.sceen-restore.active,
- .icon.sceen-restore:hover {
- background-image: url('/assets/screen_restore_highlight.png');
- }
- .icon.next {
- width: 36px;
- height: 36px;
- background: url('/assets/footer_next_normal.png') no-repeat center;
- }
- .icon.next.active,
- .icon.next:hover {
- background-image: url('/assets/footer_next_highlight.png');
- }
- .icon.prev {
- width: 36px;
- height: 36px;
- background: url('/assets/footer_previous_normal.png') no-repeat center;
- }
- .icon.prev.active,
- .icon.prev:hover {
- background-image: url('/assets/footer_previous_highlight.png');
- }
- .icon.up {
- width: 36px;
- height: 36px;
- background: url('/assets/analysis_drop_up_normal.png') no-repeat center;
- }
- .icon.up.active,
- .icon.up:hover {
- background-image: url('/assets/analysis_drop_up_highlight.png');
- }
- .icon.down {
- width: 36px;
- height: 36px;
- background: url('/assets/analysis_drop_down_normal.png') no-repeat center;
- }
- .icon.down.active,
- .icon.down:hover {
- background-image: url('/assets/analysis_drop_down_highlight.png');
- }
- .icon.more {
- width: 16px;
- height: 16px;
- background: url('/assets/header_more_normal.png') no-repeat center;
- }
- .icon.more.active,
- .icon.more:hover {
- background-image: url('/assets/header_more_highlight.png');
- }
- .icon.question {
- width: 16px;
- height: 16px;
- background: url('/assets/header_question_normal.png') no-repeat center;
- }
- .icon.question.active,
- .icon.question:hover {
- background-image: url('/assets/header_question_highlight.png');
- }
- .icon.star {
- width: 16px;
- height: 16px;
- background: url('/assets/header_star_normal.png') no-repeat center;
- }
- .icon.star.active,
- .icon.star:hover {
- background-image: url('/assets/header_star_select.png');
- }
- .icon.up_turn {
- width: 20px;
- height: 76px;
- background: url('/assets/upturning_icon.png') no-repeat center;
- }
- .icon.up_turn.active,
- .icon.up_turn:hover {
- background-image: url('/assets/upturning_icon_hover.png');
- }
- .icon.down_turn {
- width: 20px;
- height: 76px;
- background: url('/assets/downturning_icon.png') no-repeat center;
- }
- .icon.down_turn.active,
- .icon.down_turn:hover {
- background-image: url('/assets/downturning_icon_hover.png');
- }
- .icon.menu {
- width: 20px;
- height: 20px;
- background: url('/assets/meun_icon.png') no-repeat center;
- }
- .icon.menu.active,
- .icon.menu:hover {
- background-image: url('/assets/meun_icon_hover.png');
- }
|