comparison doc/gtkrc-2.0 @ 25646:69d54f84350a

propagate from branch 'im.pidgin.pidgin' (head 9da7555026cd7b8456f95ae153a7852ddbcf6678) to branch 'im.pidgin.pidgin.vv' (head 3f8b4b5a421935e71b45c7b8260c8bb32a330384)
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sun, 13 Apr 2008 17:53:46 +0000
parents d2a5d298de66
children d14289aed8ee
comparison
equal deleted inserted replaced
25645:0d41d271227b 25646:69d54f84350a
26 # Set the widget style for IMHtml input widgets in request dialogs 26 # Set the widget style for IMHtml input widgets in request dialogs
27 widget "*pidgin_request_imhtml" style "imhtml-fix" 27 widget "*pidgin_request_imhtml" style "imhtml-fix"
28 # Set the widget style for IMHtml widgets in notify dialogs 28 # Set the widget style for IMHtml widgets in notify dialogs
29 widget "*pidgin_notify_imhtml" style "imhtml-fix" 29 widget "*pidgin_notify_imhtml" style "imhtml-fix"
30 30
31 # The following lets you customize the color of hyperlinks 31 # It is safe to remove any undesired settings from the following
32 # and also the text cursors. The link color thing is Pidgin specific
33 # but the rest work for any Gtk2 program. You can search the Gtk2
34 # docs for other style properties.
35 style "my-style-name" { 32 style "my-style-name" {
33 # Change the color of hyperlinks.
36 GtkIMHtml::hyperlink-color = "#000080" 34 GtkIMHtml::hyperlink-color = "#000080"
35 # Change the color of the nick in highlighted messages, e.g. messages containing your nick
36 GtkIMHtml::highlight-name-color = "#AF7F00"
37 # Change the color of the nick in received message
38 GtkIMHtml::receive-name-color = "#cc0000"
39 # Change the color of the nick in sent message
40 GtkIMHtml::send-name-color = "#204a87"
41 # Change the color of the nick in action messages, e.g. "/me likes pidgin"
42 GtkIMHtml::action-name-color = "#062585"
43 # Change the font of the typing notification in conversation history.
44 GtkIMHtml::typing-notification-font = "italic light 8.0"
45 # Change the color of the typing notification
46 GtkIMHtml::typing-notification-color = "#ff0000"
47 # Disable the typing notification
48 GtkIMHtml::typing-notification-enable = 1
49
50 # The following settings will change the behaviour in all GTK+ applications
51 # Change the cursor color
37 GtkWidget::cursor-color = "#0000FF" 52 GtkWidget::cursor-color = "#0000FF"
38 GtkWidget::secondary-cursor-color = "#00FF00" #for mixed ltr and rtl 53 GtkWidget::secondary-cursor-color = "#00FF00" #for mixed ltr and rtl
39 } 54 }
40 widget_class "*" style "my-style-name" 55 widget_class "*" style "my-style-name"
41 56