default_ie.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. CardDavMATE - the open source CardDAV Web Client
  3. Copyright (C) 2011-2015
  4. Jan Mate <jan.mate@inf-it.com>
  5. Andrej Lezo <andrej.lezo@inf-it.com>
  6. Matej Mihalik <matej.mihalik@inf-it.com>
  7. This program is free software: you can redistribute it and/or modify
  8. it under the terms of the GNU Affero General Public License as
  9. published by the Free Software Foundation, either version 3 of the
  10. License, or (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. GNU Affero General Public License for more details.
  15. You should have received a copy of the GNU Affero General Public License
  16. along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. select
  19. {
  20. padding-top: 1px;
  21. padding-left: 0px;
  22. padding-right: 0px;
  23. }
  24. select[disabled]
  25. {
  26. padding-left: 0px;
  27. padding-right: 0px !important;
  28. }
  29. input[type=text], input[type=password]
  30. {
  31. padding-left: 3px; /* it resizes the input size :( */
  32. }
  33. input[type=text].fs, input[type=password].fs
  34. {
  35. width: 389px;
  36. }
  37. input[type=text].ms, input[type=password].ms
  38. {
  39. width: 253px;
  40. }
  41. input[type=text].hs, input[type=password].hs
  42. {
  43. width: 192px;
  44. }
  45. input[type=button]
  46. {
  47. padding-top: 2px;
  48. }
  49. input[data-type="system_username"], input[data-type="system_password"]
  50. {
  51. min-width: 328px !important;
  52. max-width: 328px !important;
  53. }
  54. textarea
  55. {
  56. padding-top: 3px;
  57. }
  58. /* IE placeholder */
  59. label.placeholder {
  60. font-size: inherit;
  61. cursor: text;
  62. padding: 2px 0px 0px 3px;
  63. color: #e0e0e0;
  64. }
  65. #tags_addTag *> label.placeholder {
  66. padding-left: 1px;
  67. }