You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

95 line
1.6 KiB

  1. div.tag-line {
  2. background-color: transparent;
  3. }
  4. ul.tagit {
  5. margin: 0px 5px;
  6. padding: 0px;
  7. display: block;
  8. border: 0px;
  9. }
  10. ul.tagit li {
  11. display: block;
  12. float: left;
  13. margin: 2px 5px 2px 0;
  14. background: none;
  15. border: none;
  16. }
  17. ul.tagit li.tagit-choice {
  18. color: #fff;
  19. font-size: 80%;
  20. padding: .2em;
  21. padding-right: 18px;
  22. padding-left: 4px;
  23. position: relative;
  24. background: none;
  25. border: none;
  26. box-shadow: none;
  27. border-radius: 4px;
  28. background-color: #aaa;
  29. cursor: pointer;
  30. }
  31. ul.tagit li.tagit-new {
  32. padding: 0 4px 0 0;
  33. }
  34. ul.tagit li.tagit-choice a.tagit-label {
  35. cursor: pointer;
  36. text-decoration: none;
  37. }
  38. ul.tagit li.tagit-choice .tagit-close {
  39. cursor: pointer;
  40. position: absolute;
  41. right: .1em;
  42. top: 50%;
  43. margin-top: -8px;
  44. }
  45. /* used for some custom themes that don't need image icons */
  46. ul.tagit li.tagit-choice .tagit-close .text-icon {
  47. display: none;
  48. }
  49. ul.tagit li.tagit-choice input {
  50. display: block;
  51. float: left;
  52. margin: 2px 5px 2px 0;
  53. }
  54. ul.tagit input[type="text"] {
  55. -moz-box-sizing: border-box;
  56. -webkit-box-sizing: border-box;
  57. box-sizing: border-box;
  58. -moz-transition: none;
  59. box-shadow: none;
  60. border: none;
  61. min-height: 0px;
  62. margin: 1px 5px 1px 0;
  63. padding: 0.2em;
  64. width: inherit;
  65. background: none;
  66. background-color: transparent;
  67. outline: none;
  68. font-size: 80%;
  69. color: #777;
  70. }
  71. /* in list */
  72. .list-tag ul.tagit {
  73. margin-top: -5px;
  74. margin-left: -4px;
  75. }
  76. .list-tag ul.tagit li.tagit-choice .tagit-close {
  77. margin-top: -9px;
  78. }
  79. .list-tag ul.tagit input[type="text"] {
  80. font-size: 85%;
  81. margin-top: -1px;
  82. }