Advertisement
Guest User

Untitled

a guest
May 6th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. /* Form styles */
  2.  
  3. form.t-magnified {}
  4.  
  5. form.t-magnified input {
  6. width: 100%;
  7. padding: 15px 5px 15px 18px;
  8. border: none;
  9. border-radius: 6px;
  10. color: #777;
  11. }
  12.  
  13. form.t-magnified input:focus {
  14. outline-style: none;
  15. border: none !important;
  16. }
  17.  
  18. form.t-magnified .tag-editor {
  19. width: 100%;
  20. height: 51px;
  21. padding-top: 7px;
  22. padding-left: 13px;
  23. padding-right: 5px;
  24. border: none;
  25. border-radius: 6px;
  26. }
  27.  
  28. form.t-magnified .tag-editor input {
  29. border: none !important;
  30. cursor: text;
  31. padding: 0;
  32. }
  33.  
  34. form.t-magnified .tag-editor .tag-editor-tag {
  35. border-top-left-radius: 4px;
  36. border-bottom-left-radius: 4px;
  37. font-weight: bold;
  38. padding-left: 12px;
  39. padding-right: 3px;
  40. }
  41.  
  42. form.t-magnified .tag-editor .tag-editor-delete {
  43. border-top-right-radius: 4px;
  44. border-bottom-right-radius: 4px;
  45. padding-left: 12px;
  46. padding-right: 12px;
  47. }
  48.  
  49. form.t-magnified .tag-editor .tag-editor-tag,
  50. form.t-magnified .tag-editor .tag-editor-delete {
  51. background-color: #dfdfdf;
  52. color: #737373;
  53. padding-top: 6px;
  54. padding-bottom: 6px;
  55. }
  56.  
  57. form.t-magnified .tag-editor .tag-editor-delete i:before {
  58. color: #aaa;
  59. }
  60.  
  61. form.t-magnified .tag-editor li:hover .tag-editor-delete i:before {
  62. color: #444;
  63. }
  64.  
  65. fieldset.input-outer {
  66. position: relative;
  67. }
  68.  
  69. fieldset.input-outer .mytalengi_icon i {
  70. position: absolute;
  71. right: 15px;
  72. top: 12px;
  73. font-size: 20px;
  74. color: #ccc;
  75. }
  76.  
  77.  
  78. /* Button */
  79.  
  80. form.t-magnified .btn-full {
  81. padding: 15px;
  82. text-align: center;
  83. width: 100%;
  84. overflow: hidden;
  85. text-overflow: ellipsis;
  86. background-color: #414246;
  87. border: none;
  88. border-radius: 6px;
  89. color: white;
  90. }
  91.  
  92. form.t-magnified .btn-full:hover {
  93. background-color: #303133;
  94. color: white;
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement