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.

settings-personal.css 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. @charset "UTF-8";
  2. /**
  3. * @copyright Copyright (c) 2018, John Molakvoæ (skjnldsv@protonmail.com)
  4. *
  5. * @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
  6. *
  7. * @license GNU AGPL version 3 or any later version
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as
  11. * published by the Free Software Foundation, either version 3 of the
  12. * License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. /**
  24. * @copyright Copyright (c) 2018, John Molakvoæ (skjnldsv@protonmail.com)
  25. *
  26. * @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
  27. *
  28. * @license GNU AGPL version 3 or any later version
  29. *
  30. * This program is free software: you can redistribute it and/or modify
  31. * it under the terms of the GNU Affero General Public License as
  32. * published by the Free Software Foundation, either version 3 of the
  33. * License, or (at your option) any later version.
  34. *
  35. * This program is distributed in the hope that it will be useful,
  36. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  37. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  38. * GNU Affero General Public License for more details.
  39. *
  40. * You should have received a copy of the GNU Affero General Public License
  41. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  42. *
  43. */
  44. /**
  45. * @see core/src/icons.js
  46. */
  47. /**
  48. * SVG COLOR API
  49. *
  50. * @param string $icon the icon filename
  51. * @param string $dir the icon folder within /core/img if $core or app name
  52. * @param string $color the desired color in hexadecimal
  53. * @param int $version the version of the file
  54. * @param bool [$core] search icon in core
  55. *
  56. * @returns A background image with the url to the set to the requested icon.
  57. */
  58. #fileSharingSettings h2 {
  59. display: inline-block;
  60. }
  61. #fileSharingSettings img {
  62. cursor: pointer;
  63. }
  64. #fileSharingSettings xmp {
  65. margin-top: 0;
  66. white-space: pre-wrap;
  67. }
  68. #fileSharingSettings .icon {
  69. background-size: 16px 16px;
  70. display: inline-block;
  71. position: relative;
  72. top: 3px;
  73. margin-left: 5px;
  74. }
  75. [class^=social-], [class*=" social-"] {
  76. background-repeat: no-repeat;
  77. background-position: 8px;
  78. min-width: 16px;
  79. min-height: 16px;
  80. padding-left: 28px;
  81. background-size: 16px;
  82. }
  83. .social-diaspora {
  84. /* $dir is the app name, so we add this to the icon var to avoid conflicts between apps */
  85. background-image: var(--icon-social-diaspora-dark);
  86. }
  87. .social-twitter {
  88. /* $dir is the app name, so we add this to the icon var to avoid conflicts between apps */
  89. background-image: var(--icon-social-twitter-dark);
  90. }
  91. .social-facebook {
  92. /* $dir is the app name, so we add this to the icon var to avoid conflicts between apps */
  93. background-image: var(--icon-social-facebook-dark);
  94. }
  95. .social_sharing_buttons {
  96. padding-left: 30px !important;
  97. }
  98. /*# sourceMappingURL=settings-personal.css.map */