Heading.css 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* dojox.mobile.Heading */
  2. .mblHeading {
  3. position: relative;
  4. margin: 0px;
  5. width: 100%;
  6. overflow: hidden;
  7. white-space: nowrap;
  8. text-overflow: ellipsis;
  9. z-index: 1;
  10. padding: 0px;
  11. height: 38px;
  12. background-color: #424142;
  13. background-image: -webkit-gradient(linear, left top, left bottom, from(#4a4d52), to(#292c31));
  14. border-top: 1px solid #63696B;
  15. border-bottom: 1px solid #292C31;
  16. color: white;
  17. font-family: Helvetica;
  18. font-size: 18px;
  19. font-weight: normal;
  20. text-align: center;
  21. line-height: 40px;
  22. }
  23. .mblHeading * {
  24. z-index: 2;
  25. }
  26. .mblHeadingDivTitle {
  27. position: absolute;
  28. width: 100%;
  29. display: none;
  30. left: 0px;
  31. z-index: 1;
  32. }
  33. .mblHeadingCenterTitle .mblHeadingDivTitle {
  34. display: block;
  35. }
  36. .mblHeadingCenterTitle .mblHeadingSpanTitle {
  37. display: none;
  38. }
  39. /* Heading Arrow Button */
  40. .mblArrowButton {
  41. position: relative;
  42. float: left;
  43. height: 28px;
  44. margin: 4px 3px 0px 0px;
  45. }
  46. .mblArrowButtonHead {
  47. position: absolute;
  48. top: 4px;
  49. left: 4px;
  50. width: 19px;
  51. height: 19px;
  52. border: 1px solid #39454A;
  53. -webkit-transform: scale(0.8, 1) rotate(45deg);
  54. background-image: -webkit-gradient(linear, left top, left bottom, from(#f7fbf7), to(#cecfd6), color-stop(0.5, #ced3ce));
  55. }
  56. .dj_chrome .mblArrowButtonHead {
  57. height: 20px;
  58. border: 1px inset #39454A;
  59. -webkit-transform: scale(0.7, 1) rotate(45deg);
  60. }
  61. .mblArrowButtonBody {
  62. position: absolute;
  63. cursor: pointer;
  64. -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  65. top: 1px;
  66. left: 15px;
  67. padding: 0px 10px 0px 5px;
  68. height: 28px;
  69. border: none;
  70. font-family: Helvetica;
  71. font-size: 14px;
  72. font-weight: bold;
  73. color: black;
  74. line-height: 30px;
  75. -webkit-border-top-right-radius: 6px;
  76. -webkit-border-bottom-right-radius: 6px;
  77. background-color: #CED3CE;
  78. background-image: -webkit-gradient(linear, left top, left bottom, from(#f7fbf7), to(#cecfd6), color-stop(0.5, #ced3ce));
  79. }
  80. .mblArrowButtonSelected .mblArrowButtonHead, .mblArrowButtonSelected .mblArrowButtonBody {
  81. color: white;
  82. background-image: -webkit-gradient(linear, left top, left bottom, from(#088eef), to(#0851ad), color-stop(0.5, #0869c6));
  83. }