manage-view.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. @CHARSET "UTF-8";
  2. /*
  3. * Copyright (c) 2009 Nokia Corporation.
  4. */
  5. @import url("../css/general.css");
  6. html {
  7. background-color: #464646;
  8. }
  9. #backButton {
  10. }
  11. #addButton {
  12. }
  13. #newCartoonSourceSection {
  14. z-index:5;
  15. position: fixed;
  16. top: 30px;
  17. left: -25px;
  18. width: 84%;
  19. background: transparent;
  20. padding: 0;
  21. margin: 0;
  22. font-size: 1.5em;
  23. border-width: 56px;
  24. -webkit-border-image: url('../images/shadow-border.png') 56 56 56 56;
  25. /*border: 2px solid black;*/
  26. }
  27. #newCartoonSourceContainer {
  28. width: 100%;
  29. height: 100%;
  30. background: white;
  31. }
  32. #newCartoonSourceSection fieldset {
  33. border: 0;
  34. }
  35. #newCartoonSourceError {
  36. display: none;
  37. }
  38. #newCartoonSourceSection label {
  39. display: block;
  40. clear: both;
  41. }
  42. #newCartoonSourceSection input {
  43. width: 89.5%;
  44. clear: left;
  45. border: 1px solid black;
  46. background: #ffff9a;
  47. border-width: 0 7px 0 5px;
  48. -webkit-border-image: url('../images/input-inset-bg.png') 0 8 0 6;
  49. }
  50. #newCartoonSourceSection .activity {
  51. display: inline-block;
  52. height: 100%;
  53. width: 4%;
  54. clear: right;
  55. margin: 0 auto 0 0.5%;
  56. }
  57. #newCartoonAddActivity {
  58. display: none;
  59. margin: 0 auto 0 auto;
  60. }
  61. #newCartoonSourceSection .buttons {
  62. clear: both;
  63. }
  64. #newCartoonSourceSection button {
  65. font-size: 1em;
  66. margin-top: 0.66em;
  67. color: #fefefe;
  68. background: -webkit-gradient(linear,
  69. left top,
  70. left bottom,
  71. from(#5f5f5f),
  72. to(#262626));
  73. -webkit-border-radius: 7px;
  74. border: 0.0833em solid #5e5e5e; /* all values here divided by 1.5em */
  75. height: 2em;
  76. font-weight: bold;
  77. padding: 0.250em 0.66em;
  78. min-width: 3.33em;
  79. }
  80. #newCartoonSourceSection input {
  81. font-size: 0.8em;
  82. }
  83. #newCartoonSourceSection button:active {
  84. background: -webkit-gradient(linear,
  85. left top,
  86. left bottom,
  87. from(#262626),
  88. to(#efefef));
  89. }
  90. #addFeedButton {
  91. clear: left;
  92. float: left;
  93. font-size: 1em;
  94. }
  95. #cancelAddFeedButton {
  96. clear: right;
  97. float: right;
  98. }
  99. #cartoons {
  100. position: fixed;
  101. top: 3.625em; /* 3em (headerContainer height) 0.125 (headerContainer border) 0.5em (for separation) */
  102. left: 0em;
  103. right: 0em;
  104. font-size: 100%;
  105. bottom: 0em; /* 3em (footer height) 0.125em x 2 (footer padding) 0.125 (footer border) */
  106. overflow: auto;
  107. }
  108. ul#cartoonList {
  109. width: 99%;
  110. list-style-type: none;
  111. margin: 0 auto;
  112. padding: 0;
  113. }
  114. #cartoonList li {
  115. background: white;
  116. width: 99%;
  117. border: 2px solid black;
  118. margin: 0.5em 0 0.5em 0;
  119. vertical-align: middle;
  120. padding: 1px;
  121. }
  122. #cartoonList table {
  123. width: 100%;
  124. text-align: center;
  125. }
  126. #cartoonList table tr{
  127. margin: 0em;
  128. padding: 0em;
  129. border: 0em;
  130. line-height: 1em;
  131. }
  132. #cartoonList table td {
  133. margin: 0em;
  134. padding: 0em;
  135. border: 0em;
  136. }
  137. #cartoonList .activeLabelTd {
  138. font-size: 1.5em;
  139. width: 10%;
  140. border-right: 0.0625em solid #b2b2b2;
  141. }
  142. #cartoonList .activeIcon{
  143. }
  144. #cartoonList button {
  145. font-size: 1.5em;
  146. border: 0em;
  147. margin: 0em;
  148. width: 100%;
  149. }
  150. #cartoonList .feedButtonTd {
  151. width: 80%;
  152. }
  153. #cartoonList .feedButtonTd button{
  154. background: transparent;
  155. }
  156. #cartoonList .removeButtonTd {
  157. width: 100%;
  158. }
  159. #cartoonList .removeButtonTd button {
  160. color: white;
  161. float: right;
  162. background: -webkit-gradient(linear,
  163. left top,
  164. left bottom,
  165. from(#da4141),
  166. to(#9a0101));
  167. -webkit-border-radius: 0.25em;
  168. }
  169. #cartoonList .removeButtonTd button:active {
  170. background: -webkit-gradient(linear,
  171. left top,
  172. left bottom,
  173. from(#9a0101),
  174. to(#fea0a0));
  175. }