PageRenderTime 49ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/web-app/css/tagit-gradient-green.css

http://github.com/jdmr/mateo
CSS | 137 lines | 121 code | 16 blank | 0 comment | 0 complexity | aaadf054fce7cf73b4c1c35975e0541b MD5 | raw file
  1. .ui-autocomplete {
  2. background-color: #fff;
  3. position: absolute;
  4. cursor: default;
  5. list-style: none;
  6. margin: 25px 0 0;
  7. padding: 0;
  8. border: 1px solid #E5E5E5;
  9. border-top: none;
  10. -moz-border-radius: 0 0 10px 10px;
  11. border-radius: 0 0 10px 10px;
  12. -moz-box-shadow: 0 3px 5px #888;
  13. -webkit-box-shadow: 0 3px 5px #888;
  14. box-shadow: 0 3px 5px #888;
  15. font-size: 12px;
  16. }
  17. .ui-autocomplete .ui-menu-item {
  18. padding: 0;
  19. margin: 0;
  20. }
  21. .ui-autocomplete .ui-menu-item a {
  22. display: block;
  23. padding: 4px 6px;
  24. margin: 0;
  25. text-decoration: none;
  26. line-height: 12px;
  27. border-bottom: 1px solid #E5E5E5;
  28. border-top: 1px solid #fff;
  29. color: #555;
  30. }
  31. .ui-autocomplete .ui-menu-item a.ui-state-hover,
  32. .ui-autocomplete .ui-menu-item a.ui-state-active {
  33. background-color: #c0d1e2;
  34. color: #555;
  35. border-color: #a6cef7;
  36. }
  37. .ui-autocomplete-loading {
  38. background: white url(ui-anim_basic_16x16.gif) right center no-repeat;
  39. }
  40. ul.tagit {
  41. cursor: text;
  42. overflow: auto;
  43. font-size: 14px;
  44. width: 97%;
  45. padding: 3px;
  46. margin-top: 2px;
  47. margin-right: 6px;
  48. margin-bottom: 16px;
  49. border: 1px solid #E5E5E5;
  50. background: #fff;
  51. color: #fff;
  52. }
  53. ul.tagit li {
  54. -moz-border-radius: 5px;
  55. border-radius: 5px;
  56. display: block;
  57. float: left;
  58. margin: 2px 5px 2px 0;
  59. position: relative;
  60. }
  61. ul.tagit li.tagit-choice {
  62. background: #6DED75; /* old browsers */
  63. background: -moz-linear-gradient(top, #6DED75 0%, #1FA016 100%); /* firefox */
  64. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6DED75), color-stop(100%, #1FA016)); /* webkit */
  65. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#6DED75', endColorstr = '#1FA016', GradientType = 0); /* ie */
  66. border: 1px solid #6d95e0;
  67. padding: 2px 15px 3px 4px;
  68. }
  69. ul.tagit li.tagit-choice.selected {
  70. background: #ff3019; /* old browsers */
  71. background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* firefox */
  72. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff3019), color-stop(100%, #cf0404)); /* webkit */
  73. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ff3019', endColorstr = '#cf0404', GradientType = 0); /* ie */
  74. border-color: #f76464;
  75. }
  76. ul.tagit li.tagit-choice:hover {
  77. background: #1FA016; /* old browsers */
  78. background: -moz-linear-gradient(top, #1FA016 0%, #6DED75 100%); /* firefox */
  79. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1FA016), color-stop(100%, #6DED75)); /* webkit */
  80. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#1FA016', endColorstr = '#6DED75', GradientType = 0); /* ie */
  81. }
  82. ul.tagit li.tagit-new {
  83. padding: 2px 4px 3px;
  84. padding: 2px 4px 1px;
  85. padding: 2px 4px 1px 0;
  86. }
  87. ul.tagit li.tagit-choice input {
  88. display: block;
  89. float: left;
  90. margin: 0 5px 0 0;
  91. padding-top: 2px;
  92. padding-bottom: 2px;
  93. }
  94. ul.tagit li.tagit-choice a.tagit-close {
  95. color: #777;
  96. cursor: pointer;
  97. font-size: 12px;
  98. font-weight: bold;
  99. outline: medium none;
  100. padding: 2px 0 2px 3px;
  101. text-decoration: none;
  102. position: absolute;
  103. display: block;
  104. top: 0;
  105. right: 3px;
  106. text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
  107. }
  108. ul.tagit li.tagit-choice a.tagit-close:hover {
  109. color: #535353;
  110. }
  111. ul.tagit input[type="text"] {
  112. -moz-box-sizing: border-box;
  113. border: none !important;
  114. margin: 0 !important;
  115. padding: 0 !important;
  116. width: inherit !important;
  117. outline: none;
  118. }
  119. .tagit-hiddenSelect {
  120. display:none;
  121. }