comparison doc/gtkrc-2.0 @ 23124:2f4b10ee752b

propagate from branch 'im.pidgin.pidgin' (head caaa65e1c157e6cb43219237f88a4ad298f3bbf5) to branch 'im.pidgin.pidgin.custom_smiley' (head 762e0e84f778841d4021f4d8ea5c39bff5e173b2)
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 28 Apr 2008 00:01:07 +0000
parents d2a5d298de66
children d14289aed8ee
comparison
equal deleted inserted replaced
23123:981a0bfc3d9d 23124:2f4b10ee752b
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