TertiaryButton.qml 486 B

12345678910111213141516171819
  1. // Copyright (c) 2021 Ultimaker B.V.
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.2
  4. import UM 1.4 as UM
  5. import Cura 1.1 as Cura
  6. Cura.ActionButton
  7. {
  8. color: "transparent"
  9. textColor: UM.Theme.getColor("text_link")
  10. outlineColor: "transparent"
  11. disabledColor: UM.Theme.getColor("action_button_disabled")
  12. textDisabledColor: UM.Theme.getColor("action_button_disabled_text")
  13. hoverColor: "transparent"
  14. underlineTextOnHover: true
  15. }