mobiscroll.frame.sense-ui.css 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .mbsc-sense-ui .dwwr {
  2. color: #fff;
  3. background: #333;
  4. border: 2px solid #fff;
  5. border-radius: 3px;
  6. }
  7. .mbsc-sense-ui .dwv {
  8. padding: 5px 10px;
  9. border-bottom: 1px solid #666;
  10. font-size: 14px;
  11. text-align: left;
  12. min-height: 17px;
  13. }
  14. /* Buttons */
  15. .mbsc-sense-ui .dwbc {
  16. padding: 4px 2px;
  17. background: #000;
  18. background: -webkit-gradient(linear,left bottom,left top,color-stop(0.5, #000),color-stop(0.5, #666));
  19. background: -webkit-linear-gradient(#666 50%,#000 50%);
  20. background: -moz-linear-gradient(#666 50%,#000 50%);
  21. background: linear-gradient(#666 50%,#000 50%);
  22. }
  23. .mbsc-sense-ui .dwb {
  24. height: 40px;
  25. line-height: 40px;
  26. padding: 0 15px;
  27. margin: 0 2px;
  28. color: #fff;
  29. font-size: 14px;
  30. font-weight: bold;
  31. border: 1px solid #333;
  32. background: #222;
  33. background: -webkit-gradient(linear,left bottom,left top,from(#000),to(#444));
  34. background: -webkit-linear-gradient(#444,#000);
  35. background: -moz-linear-gradient(#444,#000);
  36. background: linear-gradient(#444,#000);
  37. box-shadow: inset 0 0 5px #000;
  38. border-radius: 5px;
  39. }
  40. .mbsc-sense-ui .dw .dwb-a {
  41. background: #3c7500;
  42. background: -webkit-gradient(linear,left bottom,left top,from(#3c7500),to(#94c840));
  43. background: -webkit-linear-gradient(#94c840,#3c7500);
  44. background: -moz-linear-gradient(#94c840,#3c7500);
  45. background: linear-gradient(#94c840,#3c7500);
  46. }
  47. /* Bubble mode */
  48. .mbsc-sense-ui .dw-bubble-bottom .dw-arr {
  49. border-color: transparent transparent #fff transparent;
  50. }
  51. .mbsc-sense-ui .dw-bubble-top .dw-arr {
  52. border-color: #fff transparent transparent transparent;
  53. }
  54. /* Docked */
  55. .mbsc-sense-ui.dw-top .dwwr,
  56. .mbsc-sense-ui.dw-bottom .dwwr {
  57. border: 0;
  58. border-radius: 0;
  59. }
  60. .mbsc-sense-ui.dw-bottom .dwwr {
  61. border-top: 1px solid #666;
  62. }