Giter Club home page Giter Club logo

Comments (4)

dpizetta avatar dpizetta commented on June 8, 2024 1

@Luyaojun thanks for the contact. You can append the patch you made in the end of the stylesheet provided by qdarkstyle. Something like this:

mypatch = '''
QTableView{
border: 1px solid rgb(45, 45, 45);
gridline-color: rgb(60, 60, 60);
background-color: red;
selection-background-color: green;
}
'''

style = qdarkstyle.load_stylesheet_pyqt5()
app.setStyleSheet(style + mypatch)

You also avoid using style changes over the code and have everything in one place. If you want this change on a specific object, you can use the css properties to do that. I hope this works for you.

from qdarkstylesheet.

Luyaojun avatar Luyaojun commented on June 8, 2024

Thanks for your reply!
The first method works for me, and I learned more about the stylesheet.
I adjust the property and now it met my need.

from qdarkstylesheet.

Luyaojun avatar Luyaojun commented on June 8, 2024

Sorry to bother you again.
Is it possible to modify its style dynamically?
I need to change the background color of selected items according to their data.
It seems that no ItemDataRole matches the selected situation?

from qdarkstylesheet.

Luyaojun avatar Luyaojun commented on June 8, 2024

I tried the code below:

app = QApplication.instance()
dark_style_sheet = qdarkstyle.load_stylesheet_pyqt5()
dynamic_style = '''
    QTableView#tableView_task::item:selected{
        background: red;
        color: white;
    }
'''
app.setStyleSheet(dark_style_sheet + dynamic_style)

It works fine, but may be not elegant.
Appreciate for any suggestions in advance!

from qdarkstylesheet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.